Skip to content

Instantly share code, notes, and snippets.

@texel
Created June 23, 2009 22:09
Show Gist options
  • Save texel/134879 to your computer and use it in GitHub Desktop.
Save texel/134879 to your computer and use it in GitHub Desktop.
class MyClass
def self.foo
'bar'
end
end
module Bazify
def foo
'baz' + super
end
def baz
'qux'
end
end
MyClass.foo
MyClass.extend Bazify
MyClass.foo
MyClass.baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment