module Something | |
module Another | |
def self.great | |
puts "great was called" | |
end | |
end | |
end | |
include Something | |
module Another | |
def self.method_missing(name, *args, &block) | |
p "method missing: #{name}" | |
end | |
end |
module Something | |
module Another | |
def self.great | |
puts "great was called" | |
end | |
end | |
end | |
include Something | |
module Something | |
module Another | |
def self.method_missing(name, *args, &block) | |
p "method missing: #{name}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment