B
bwv549
I've seen someone do this, but I forget how it is done and I can't
find it by searching...
module Dog
def self.new
puts 'ruff ruff'
end
end
class Crazy
class Dog
def some_method
mydog = Dog.new # I want the module Dog and not the class Dog
that I'm in...
end
end
end
# What is the nomenclature to get at the module Dog above and not the
Dog class I'm inside?
Thanks
find it by searching...
module Dog
def self.new
puts 'ruff ruff'
end
end
class Crazy
class Dog
def some_method
mydog = Dog.new # I want the module Dog and not the class Dog
that I'm in...
end
end
end
# What is the nomenclature to get at the module Dog above and not the
Dog class I'm inside?
Thanks