Skip to content

Instantly share code, notes, and snippets.

@mikelikesbikes
Created December 9, 2011 20:48
Show Gist options
  • Save mikelikesbikes/1453232 to your computer and use it in GitHub Desktop.
Save mikelikesbikes/1453232 to your computer and use it in GitHub Desktop.
# 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