npverni (owner)

Revisions

gist: 229086 Download_button fork
public
Public Clone URL: git://gist.github.com/229086.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
  named_scope :featured, lambda {|*args|
    limit = args.first || 1
    { :conditions => ['is_featured = 1'],
      :order => 'start_date asc',
      :limit => limit}
  }