This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Antihero::Application.routes.draw do | |
scope module: :admin, as: :admin do | |
root 'dashboard#index' | |
resources :articles, only: [:new, :create] | |
end | |
end | |
# Prefix Verb URI Pattern Controller#Action | |
# admin_root GET / admin/dashboard#index | |
# admin_articles GET /articles(.:format) admin/articles#index |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
duration = '1h2min3s' | |
# duration = '2min3s' | |
# duration = '3s' | |
# match = duration.match(/(?<hours>.+h)?(?<minutes>.+min)?(?<seconds>.+s)?/) | |
# hours, minutes, seconds = [match[:hours], match[:minutes], match[:seconds]].map(&:to_i) | |
# 3600 * hours + 60 * minutes + seconds | |
match = duration.match(/ | |
( (?<hours>[[:digit:]]+)h ){0,1} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
min_hour, max_hour = @slots.minimum_hour, @slots.maximum_hour | |
datetimes = (@[email protected]_date).map do |date| | |
(min_hour..max_hour).map do |hour| | |
date.to_datetime.change(hour: hour) | |
end | |
end.flatten | |
@slots = @slots.group_by(&:datetime) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Slot.group('TIME(datetime)').count | |
# => {"06:00:00"=>8, "07:00:00"=>8, "08:00:00"=>8, "09:00:00"=>8, "10:00:00"=>8, "11:00:00"=>8, "12:00:00"=>8, "13:00:00"=>8, "14:00:00"=>8, "15:00:00"=>8, "16:00:00"=>8, "17:00:00"=>8, "18:00:00"=>8, "19:00:00"=>8} | |
Slot.group('DATE(datetime)').count | |
# => {"2013-08-29"=>14, "2013-08-30"=>14, "2013-08-31"=>14, "2013-09-01"=>14, "2013-09-02"=>14, "2013-09-03"=>14, "2013-09-04"=>14, "2013-09-05"=>14} | |
Slot.group('datetime::time').count | |
Slot.group('datetime::date').count |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Club < ActiveRecord::Base | |
def self.center | |
@center ||= south_west.zip(north_east).map do |a| | |
(a[0] + a[1]) / 2 | |
end | |
end | |
def self.south_west | |
@south_west ||= [minimum(:lat), minimum(:lng)] | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TL;DR | |
# verb(action, *args) | |
# verb(action, parameters, session, flash) | |
require 'test_helper' | |
class ProjectsControllerTest < ActionController::TestCase | |
setup do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nonumber | |
set relativenumber | |
function! ToggleNumber() | |
if &relativenumber | |
set number | |
set norelativenumber | |
else | |
set nonumber | |
set relativenumber |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
class ArticleTest < ActiveSupport::TestCase | |
test 'tested_class is Article' do | |
assert_same Article, tested_class | |
end | |
private | |
def tested_class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
City = | |
find: (location) -> | |
promise = $.Deferred() | |
$.ajax '/cities', | |
data: q: location | |
success: (result) -> | |
promise.resolve result.city | |
error: -> | |
promise.reject 'invalid location' | |
promise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def link_to_next(article) | |
target = article.next || Article.new(date: Date.today) | |
link_to "next", target.today? ? root_path : target | |
end | |
# do not initialize an Article | |
def link_to_next(article) | |
target = article.next | |
link_to "next", target.try('!today?') ? target : root_path |