Skip to content

Instantly share code, notes, and snippets.

@murajun1978
Created April 1, 2014 12:49
Show Gist options
  • Save murajun1978/9913305 to your computer and use it in GitHub Desktop.
Save murajun1978/9913305 to your computer and use it in GitHub Desktop.
module PrependModule
def foo
'prepend module'
end
end
class PrependClass
prepend PrependModule
def foo
'prepend class'
end
end
pre = PrependClass.new
p pre.foo #=> 'prepend module'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment