Skip to content

Instantly share code, notes, and snippets.

@toshihirock
Created March 28, 2015 15:16
Show Gist options
  • Save toshihirock/463ed3f133124d711740 to your computer and use it in GitHub Desktop.
Save toshihirock/463ed3f133124d711740 to your computer and use it in GitHub Desktop.
module Hoge
def filter_record
puts "hoge hello"
end
end
module Fuga
include Hoge
def filter_record
puts "Abc hello"
super
end
end
class Abc
include Fuga
def emit
puts "emit"
filter_record
end
def filter_record
super
puts "foo hello"
end
end
Abc.new.emit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment