Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created July 8, 2015 11:36
Show Gist options
  • Select an option

  • Save osyo-manga/02618dc6b8d3382bd6cd to your computer and use it in GitHub Desktop.

Select an option

Save osyo-manga/02618dc6b8d3382bd6cd to your computer and use it in GitHub Desktop.
prepend
module A
def func
puts "A"
super
end
end
module B
def func
puts "B"
end
end
include B
module B
prepend A
end
func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment