Skip to content

Instantly share code, notes, and snippets.

@tammersaleh
Created January 23, 2010 01:19
Show Gist options
  • Save tammersaleh/284360 to your computer and use it in GitHub Desktop.
Save tammersaleh/284360 to your computer and use it in GitHub Desktop.
cars = Car.scoped
rich_ppls_cars = cars.order('cars.price DESC').limit(10)
# ..vs...
cars = Car
rich_ppls_cars = cars.order('cars.price DESC').limit(10)
# ie: Why the call to #scoped?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment