vote up 2 vote down star
1

how do i define a named_scope to return all the records that were created within the last 7 days, and then how do i use that named scope in a controller?

flag

2 Answers

vote up 4 vote down check

I would recommend watching the Railscast Episode on named_scope.

Ideally, the code you're looking for would be:

 named_scope :recent, 
   lambda { |*args| {:conditions => ["created_at > ?", (args.first || 7.days.ago)]} }

This will allow you to pass a parameter to the named scope or it will default to the previous 7 days.

You would call it using:

MyModel.recent
link|flag
works great, thanks. – Jason Miesionczek Nov 25 '08 at 18:32
I'm still new to Rails, but I absolutely love this feature! – The Wicked Flea Dec 4 '08 at 20:21
vote up 0 vote down

You need to pass named_scope a proc so it will be evaluated every time the call to named_scope is run. Otherwise if you specify Time.now it will run once (on first call) and be "cached" until the app is restarted.

  named_scope \
    :this_week,
    :conditions =>  [
      %created_at > :time!,
      proc {{:time => Time.now}}
    ]

You can call the named_scope like @ar_object.this_week

link|flag
that example throws errors. "unkown type of %string %created_at" – Jason Miesionczek Nov 25 '08 at 18:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.