Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 4, 2012 22:07
Show Gist options
  • Save vsavkin/1975041 to your computer and use it in GitHub Desktop.
Save vsavkin/1975041 to your computer and use it in GitHub Desktop.
PostsRepository as a module
module PostsRepository
def new_posts_of_author author
...
end
end
class Post
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