Rails 3 autoload

后端 未结 4 1678
面向向阳花
面向向阳花 2020-12-01 09:45

I have a class ConstData:

class ConstData

  US_CITIES = [\'miami\', \'new york\']

  EUROPERN_CITIES = [\'madrid\', \'london\']

end

Its s

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-01 10:33

    Follow the solution for lib dir be autoloaded:

    Remove config.threadsafe! from development.rb and production.rb;

    Add in config/application.rb:

    config.autoload_paths += %W(#{config.root}/lib)
    config.threadsafe!
    config.dependency_loading = true
    

提交回复
热议问题