Skip to content

Instantly share code, notes, and snippets.

@bluerabbit
Created May 25, 2012 08:37
Show Gist options
  • Save bluerabbit/2786657 to your computer and use it in GitHub Desktop.
Save bluerabbit/2786657 to your computer and use it in GitHub Desktop.
Rubyでmoduleを作る場合はActiveSupport::Concernをextendする
module M
extend ActiveSupport::Concern
module ClassMethods
def cm; puts 'I am a class method'; end
end
module InstanceMethods
def im; puts 'I am an instance method'; end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment