Skip to content

Instantly share code, notes, and snippets.

@quirkey
Created January 28, 2009 21:59
Show Gist options
  • Select an option

  • Save quirkey/54218 to your computer and use it in GitHub Desktop.

Select an option

Save quirkey/54218 to your computer and use it in GitHub Desktop.
named_scope :by_letter, lambda {|l|
{:conditions => ["UPPER(SUBSTR(title,1,1)) = ?", l.to_s.upcase]}
}
## in controller
Book.by_letter(params[:l]).paginate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment