Last active
April 6, 2016 00:49
-
-
Save t27duck/0a082faf569c316a3cec7b9030e88d31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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