从模块中的类内的子模块调用类

时间:2013-11-21 17:38:54

标签: ruby-on-rails ruby

我有以下模块结构:

folder '/games/unreal_tournament'

module Games
  module UnrealTournament
    class System
     ...
    end
  end
end

folder '/games'

module Games
  class Action
    UnrealTournament::System
  end
end

当我尝试在Action类中调用UnrealTournament :: System时,我得到一个FATAL:NameError(未初始化的常量UnrealTournament :: System)。

我没有在本地运行rails app时出现此错误。但是当我在服务器上访问我的应用程序时,它会给我上述错误。有人可以帮我这个吗?

0 个答案:

没有答案