我正在编写一个应用程序,要求我在控制器之外定义一个Ruby类,然后在控制器中实例化它。
我把它放在lib/my_file.rb
和initializers/client/my_file.rb
中,得到了相同的结果:
Sprockets::FileNotFound at /
couldn't find file 'client/my_file' with type 'application/javascript'
答案 0 :(得分:1)
通过main/config/initializers
:
if RUBY_PLATFORM == 'opal'
require_relative 'client/my_file'
else
end