Created
August 3, 2011 23:55
-
-
Save jackdempsey/1124182 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Foo < ActiveRecord::Base | |
include Models::Scopes::Order | |
default_scope recently_updated # didn't realize you could do this | |
end |
This file contains hidden or 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
module Models | |
module Scopes | |
module Order | |
extend ActiveSupport::Concern | |
included do | |
scope :recently_created, order('created_at DESC') | |
scope :recently_updated, order('updated_at DESC') | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment