Skip to content

Instantly share code, notes, and snippets.

@codeschool-courses
Created August 30, 2011 19:14
Show Gist options
  • Save codeschool-courses/1181750 to your computer and use it in GitHub Desktop.
Save codeschool-courses/1181750 to your computer and use it in GitHub Desktop.
Rails for Zombies 2 - Challenge 2-3
class Tweet < ActiveRecord::Base
scope :recent, order('created_at desc').limit(4)
scope :graveyard, where(show_location: true, location: "graveyard")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment