0

我想从lib/info_test加载我的类fine.rb,但它不起作用。我更改了以下类config/application.rb如下:

config.autoload_paths += %W(#{config.root}/lib)
config.autoload_paths += %W(#{config.root}/lib/info_test)

如果我将课程直接保存在lib文件夹中,它可以工作,但不在lib/info_test 中

4

1 回答 1

0

它应该有效,并且对我有用。检查值

<application_name>::Application.config.autoload_paths

rails c

更新

然后尝试

config.autoload_paths += %W(#{config.root}/lib #{config.root}/lib/info_test)

在 application.rb 中。

于 2012-09-17T15:14:17.103 回答