Project

General

Profile

« Previous | Next » 

Revision 911c9a36

Added by Joseph Magen almost 11 years ago

  • ID 911c9a36b92a58f38a7a468115f9783a0fdc7aeb

fixes #2411 - add autoload_paths in application.rb in preparation for file location changes

View differences:

config/application.rb
console {Foreman.setup_console}
end
Bundler.require(*Rails.groups(:assets => %w(development test)))
begin
begin
Bundler.require(:libvirt) if SETTINGS[:unattended]
rescue LoadError
puts "Libvirt bindings are missing - hypervisor management is disabled"
......
config.autoload_paths += Dir["#{config.root}/lib"]
config.autoload_paths += Dir["#{config.root}/app/controllers/concerns"]
config.autoload_paths += Dir[ Rails.root.join('app', 'models', 'power_manager') ]
config.autoload_paths += Dir["#{config.root}/app/models/concerns"]
config.autoload_paths += Dir["#{config.root}/app/controllers/concerns"]
config.autoload_paths += Dir["#{config.root}/app/services)"]
config.autoload_paths += Dir["#{config.root}/app/observers)"]
config.autoload_paths += Dir["#{config.root}/app/mailers)"]
config.autoload_paths += %W(#{config.root}/app/models/auth_sources)
config.autoload_paths += %W(#{config.root}/app/models/compute_resources)
config.autoload_paths += %W(#{config.root}/app/models/operatingsystems)
config.autoload_paths += %W(#{config.root}/app/models/parameters)
config.autoload_paths += %W(#{config.root}/app/models/trends)
config.autoload_paths += %W(#{config.root}/app/models/taxonomies)
# Only load the plugins named here, in the order given (default is alphabetical).
# :all can be used as a placeholder for all plugins not explicitly named.

Also available in: Unified diff