「Ruby/rails/autoload」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==autoloadを使うための準備== config/application.rb module Helloworld class Application < Rails::Application config.autoload_paths += %W(#{config.root}/li...」) |
(相違点なし)
|
2017年11月8日 (水) 03:15時点における版
autoloadを使うための準備
config/application.rb
module Helloworld class Application < Rails::Application config.autoload_paths += %W(#{config.root}/lib) # これを追加 end end
rails5以降productionではエラーとなる
以下もapplication.rbに追加
config.paths.add 'lib', eager_load: true