标签: activerecord ruby-on-rails-4
我在Rails 3.2应用程序中使用以下范围:
scope :consumable, lambda { where('expiration_date > ?', Date.today) }
使用Ruby 2.0在Rails 4中实现相同的正确语法是什么?
答案 0 :(得分:2)
scope :consumable, -> { where('expiration_date > ?', Date.today) }