Created
July 3, 2010 23:52
-
-
Save rumblex/462941 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# 2.3 | |
named_scope :last_active_since, lambda { |la| la = 10.minutes.ago if la.nil?; {:conditions => ['last_active_at >= ?', la]}} | |
# 3 scopes | |
named_scope :last_active_since, lambda { |la| la = 10.minutes.ago if la.nil?; where('last_active_at >= ?', la) } | |
# 3 method | |
def last_active_since(la = 10.minutes.ago) | |
where('last_active_at >= ?', la) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment