Skip to content

Instantly share code, notes, and snippets.

@npverni
Created November 8, 2009 03:54
Show Gist options
  • Save npverni/229086 to your computer and use it in GitHub Desktop.
Save npverni/229086 to your computer and use it in GitHub Desktop.
named_scope :featured, lambda {|*args|
limit = args.first || 1
{ :conditions => ['is_featured = 1'],
:order => 'start_date asc',
:limit => limit}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment