Created
March 9, 2012 22:54
-
-
Save vsavkin/2009152 to your computer and use it in GitHub Desktop.
PostsRepository
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 PostsRepository | |
def new_posts_of_author author | |
... | |
end | |
end | |
class Post < ActiveRecord::Base | |
extend PostsRepository | |
end | |
Post.new_posts_of_author "Jim" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment