鳩舎

レースしない

Entries from 2013-07-14 to 1 day

Rails named scope デフォルト引数

Rails の named scope にデフォルト引数を与えると便利。 class Book < AR::Base scope :published, ->(at = Time.now) { where('published_at > ?', at) } end こうしてデフォルト引数を与えておくと Book.published # => 現在公開済みの本 Book.published …