0

I want to load my class fine.rb from lib/info_test, but it do not work. I changed the following class config/application.rb as follows:

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

If I save my class directly in the folder lib it works, but not in 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 に答える