Skip to content

Instantly share code, notes, and snippets.

@divins
Created March 16, 2012 14:22
Show Gist options
  • Save divins/2050257 to your computer and use it in GitHub Desktop.
Save divins/2050257 to your computer and use it in GitHub Desktop.
Things to do with modules
# gema que sigui module Gem
def foo
'hey'
end
end
class A
include Gem
end
# nostre core_ext
module CoreExt
def foo
super
end
end
class A
include CoreExt
end
p A.new.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment