Created
January 6, 2013 10:34
-
-
Save kitak/4466488 to your computer and use it in GitHub Desktop.
moduleをクラスメソッドとしてinclude
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 Hoge | |
| def self.included(base) | |
| base.extend ClassMethods | |
| end | |
| module ClassMethods | |
| # class methods... | |
| end | |
| # instance methods... | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment