Created
December 9, 2011 20:48
-
-
Save mikelikesbikes/1453232 to your computer and use it in GitHub Desktop.
This file contains 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
# given this model (Rails 3.1) | |
class User < ActiveRecord::Base | |
scope :over_30, where("age > 30") | |
end | |
# is this possible? | |
User.first.over_30? # => true if User.first matches the over_30 criteria |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment