Skip to content

Instantly share code, notes, and snippets.

@kitak
Created January 6, 2013 10:34
Show Gist options
  • Select an option

  • Save kitak/4466488 to your computer and use it in GitHub Desktop.

Select an option

Save kitak/4466488 to your computer and use it in GitHub Desktop.
moduleをクラスメソッドとしてinclude
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