描述:
我有一个文件,其中包含Ruby中的代码Simulator
,其中包含一些包含许多其他类的其他文件。
现在,我正在尝试在我的Rails应用中使用类Simulator
。更确切地说,在控制器中。这些类是正确的。
我正在尝试在我的控制器中创建Simulator
对象和调用方法。
每次都会收到错误
Simulator的“Unitialized constant”,或者它使用的类。
我尝试了很多东西,比如:
config.autoload_paths +=
require_dependence "simulator.rb"
config.cache_classes = false
但它仍然不起作用。
simulator.rb的格式
require 'other_classes...'
class Simulator
"Using other_classes"
"Some specific methods"
end