Created
February 13, 2013 17:02
-
-
Save schnittchen/4946111 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in m/m_q.rb | |
module M | |
module MQ | |
end | |
end | |
# in m/m2.rb | |
module M | |
module M2 | |
def self.foo | |
MQ # good | |
end | |
class << self | |
def bar | |
MQ # NameError Exception: uninitialized constant MQ | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment