Ruby namespace tips

After made below test, then you don’t need to use Test::B.bbb in everywhere of your plugin, just use B.bbb.

class A
  def self.aaa
    puts "a"
  end
end

module Test
  class A
    def self.aaa
      puts "aaaaaaaaaa"
    end
  end
end

module Test
  class B
    def self.bbb
      A.aaa
    end
  end
end


Test::B.bbb # => aaaaaaaaaa
A.aaa # => a
blog comments powered by Disqus