Skip to content

Instantly share code, notes, and snippets.

@mitchellh
Created July 27, 2012 05:22
Show Gist options
  • Save mitchellh/3186297 to your computer and use it in GitHub Desktop.
Save mitchellh/3186297 to your computer and use it in GitHub Desktop.
module Mixin
def self.included(base)
base.extend ClassMethods
end
module ClassMethods
def foo
puts "HELLO!"
end
end
end
class Foo
include Mixin
end
Foo.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment