Skip to content

Instantly share code, notes, and snippets.

Created April 5, 2011 23:55
Show Gist options
  • Save anonymous/904846 to your computer and use it in GitHub Desktop.
Save anonymous/904846 to your computer and use it in GitHub Desktop.
module Helper
def helper_method
puts "I'm helping"
end
end
class Main
include Helper
def show
helper_method
end
end
Main.class_eval do
def show_also
puts "I'm also showing here"
end
helper_method
end
m = Main.new
m.show_also
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment