0

Rails 3.2 アプリケーションで次のスコープを使用しています。

scope :consumable, lambda { where('expiration_date > ?', Date.today) }

Ruby 2.0を使用してRails 4で同じことを達成するための正しい構文は何ですか?

4

1 に答える 1

2
scope :consumable, -> { where('expiration_date > ?', Date.today) }
于 2013-07-16T15:59:50.630 に答える