Skip to content

Instantly share code, notes, and snippets.

@xinuc
Created May 24, 2017 14:53
Show Gist options
  • Select an option

  • Save xinuc/9dc7882ade6425e910ff2e663c087674 to your computer and use it in GitHub Desktop.

Select an option

Save xinuc/9dc7882ade6425e910ff2e663c087674 to your computer and use it in GitHub Desktop.
prepend.rb
class Hello
def say
puts "hello"
end
end
Hello.new.say
# hello
module HelloPatch
def say
puts "patching"
super
end
end
class Hello
prepend HelloPatch
end
Hello.new.say
# patching
# hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment