Skip to content

Instantly share code, notes, and snippets.

@t27duck
Last active April 6, 2016 00:49
Show Gist options
  • Save t27duck/0a082faf569c316a3cec7b9030e88d31 to your computer and use it in GitHub Desktop.
Save t27duck/0a082faf569c316a3cec7b9030e88d31 to your computer and use it in GitHub Desktop.
# Your code you include somewhere
module MySpecialCodeBlock
def foo(x)
puts "Twice x is: #{x*2}"
super
end
end
# From a libary
class TheRealClass
def foo(x)
puts x
end
end
# somewhere in the bootstrapping of your code...
TheRealClass.prepend MySpecialCodeBlock
y = TheRealClass.new
y.foo(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment