我在 Rails 3.2 应用程序中使用以下范围:
scope :consumable, lambda { where('expiration_date > ?', Date.today) }
在使用 Ruby 2.0 的 Rails 4 中实现相同的正确语法是什么?
我在 Rails 3.2 应用程序中使用以下范围:
scope :consumable, lambda { where('expiration_date > ?', Date.today) }
在使用 Ruby 2.0 的 Rails 4 中实现相同的正确语法是什么?