Skip to content

Instantly share code, notes, and snippets.

@porras
Created January 20, 2009 15:58
Show Gist options
  • Save porras/49533 to your computer and use it in GitHub Desktop.
Save porras/49533 to your computer and use it in GitHub Desktop.
class Wadus < ActiveRecord::Base
named_scope :limited, lambda {|n| { :limit => n }}
named_scope :low_id, :conditions => "id < 500"
end
Wadus.low_id.limited(5)
# SELECT * FROM "wadus" WHERE (id < 500) LIMIT 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment