Skip to content

Instantly share code, notes, and snippets.

@banister
Forked from anonymous/gist:904846
Created April 6, 2011 00:01
Show Gist options
  • Save banister/904853 to your computer and use it in GitHub Desktop.
Save banister/904853 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"
helper_method
end
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