Skip to content

Instantly share code, notes, and snippets.

@codeschool-courses
Created February 4, 2013 16:11
Show Gist options
  • Save codeschool-courses/4707719 to your computer and use it in GitHub Desktop.
Save codeschool-courses/4707719 to your computer and use it in GitHub Desktop.
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