Adding a directory to the load path in Rails?

后端 未结 8 1015
囚心锁ツ
囚心锁ツ 2020-12-04 14:25

As of Rails 2.3, what\'s the right way to add a directory to the load path so that it hooks into Rails\' auto-reloading mechanisms?

The specific example I\'m thinkin

相关标签:
8条回答
  • 2020-12-04 14:33

    In config/application.rb add config.autoload_paths << "#{config.root}/models/widgets".

    File should look like this:

    module MyApp
      class Application < Rails::Application
        config.autoload_paths << "#{config.root}/models/widgets"
      end
    end
    

    I know this works for Rails 4 and 5. Probably others as well.

    0 讨论(0)
  • 2020-12-04 14:34

    In Rails 5 you don't have to explicitly load folders from within the app directory anymore. All folders placed inside are directly available. You don't have to touch any of the config files. But it seems as if there are some issues with Spring.

    The new workflow therefore is:

    1. create a new folder and class inside the /app directory
    2. run spring stop on the command line
    3. check the autoload-paths with bin/rails r 'puts ActiveSupport::Dependencies.autoload_paths' on the command line. The new folder should now be listed.
    4. run spring start on the command line
    0 讨论(0)
  • 2020-12-04 14:37

    In Rails 3, you can set this in config/application.rb, where this sample is provided by default:

    # Add additional load paths for your own custom dirs
    # config.load_paths += %W( #{config.root}/extras )
    
    0 讨论(0)
  • 2020-12-04 14:41

    On Rails 5 you need to add the following code to environment.rb:

    # Add the widgets folder to the autoload path
    Rails.application.configure do
      config.autoload_paths << "#{Rails.root}/app/widgets"
    end
    
    0 讨论(0)
  • 2020-12-04 14:41

    I found I needed to do this after config block-- no access to config object anymore.

    This did the trick

    ActiveSupport::Dependencies.load_paths << "#{RAILS_ROOT}/app/widgets"
    
    0 讨论(0)
  • 2020-12-04 14:43

    In the current version of Rails (3.2.8), this has been changed in the application.rb file.

    The code is currently commented out as:

      # Custom directories with classes and modules you want to be autoloadable.
      # config.autoload_paths += %W(#{config.root}/extras)
    

    Will need to update the autoload_paths value. Attempting to modify the the former load_paths variable causes this error.

    /configuration.rb:85:in `method_missing': undefined method `load_paths' for #<Rails::Application::Configuration:0xac670b4> (NoMethodError)
    

    for an example, for each path to add to autoload_paths config, add a line similar to the following:

    config.autoload_paths += %W(#{config.root}/app/validators)
    

    config.autoload_paths accepts an array of paths from which Rails will autoload constants. Default is all directories under app.

    http://guides.rubyonrails.org/configuring.html


    From commentor (hakunin) below:

    If the directory is under app/, you don't need to add it anywhere, it should just work by default (definitely in 3.2.12). Rails has eager_load_paths that acts as autoload_paths in development, and eager load in production. All app/* directories are automatically added there.

    0 讨论(0)
提交回复
热议问题