Created
May 11, 2013 23:02
-
-
Save arwagner/5561738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Article < ActiveRecord::Base | |
scope :published, where(:published => true) | |
scope :in_order, order('published_at desc') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment