Skip to content

Instantly share code, notes, and snippets.

@adammiribyan
Created April 2, 2011 01:45
Show Gist options
  • Save adammiribyan/899146 to your computer and use it in GitHub Desktop.
Save adammiribyan/899146 to your computer and use it in GitHub Desktop.
Interesting ActiveRecord scope method
# find_created_in_last(7.months)
def self.find_started_in_last(time_span)
old_time = Date.today - time_span
all(:conditions => ["created_at > ?", old_time.to_s(:db)])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment