class Rails::Engine::Configuration
Attributes
autoload_once_paths[W]
autoload_paths[W]
eager_load_paths[W]
middleware[W]
plugins[RW]
root[R]
Public Class Methods
new(root=nil)
click to toggle source
Calls superclass method
Rails::Railtie::Configuration.new
# File lib/rails/engine/configuration.rb, line 10 def initialize(root=nil) super() @root = root @generators = app_generators.dup end
Public Instance Methods
autoload_once_paths()
click to toggle source
# File lib/rails/engine/configuration.rb, line 75 def autoload_once_paths @autoload_once_paths ||= paths.autoload_once end
autoload_paths()
click to toggle source
# File lib/rails/engine/configuration.rb, line 79 def autoload_paths @autoload_paths ||= paths.autoload_paths end
eager_load_paths()
click to toggle source
# File lib/rails/engine/configuration.rb, line 71 def eager_load_paths @eager_load_paths ||= paths.eager_load end
middleware()
click to toggle source
Returns the middleware stack for the engine.
# File lib/rails/engine/configuration.rb, line 17 def middleware @middleware ||= Rails::Configuration::MiddlewareStackProxy.new end
paths()
click to toggle source
# File lib/rails/engine/configuration.rb, line 39 def paths @paths ||= begin paths = Rails::Paths::Root.new(@root) paths.add "app", :eager_load => true, :glob => "*" paths.add "app/assets", :glob => "*" paths.add "app/controllers", :eager_load => true paths.add "app/helpers", :eager_load => true paths.add "app/models", :eager_load => true paths.add "app/mailers", :eager_load => true paths.add "app/views" paths.add "lib", :load_path => true paths.add "lib/assets", :glob => "*" paths.add "lib/tasks", :glob => "**/*.rake" paths.add "config" paths.add "config/environments", :glob => "#{Rails.env}.rb" paths.add "config/initializers", :glob => "**/*.rb" paths.add "config/locales", :glob => "*.{rb,yml}" paths.add "config/routes", :with => "config/routes.rb" paths.add "db" paths.add "db/migrate" paths.add "db/seeds", :with => "db/seeds.rb" paths.add "vendor", :load_path => true paths.add "vendor/assets", :glob => "*" paths.add "vendor/plugins" paths end end
root=(value)
click to toggle source
# File lib/rails/engine/configuration.rb, line 67 def root=(value) @root = paths.path = Pathname.new(value).expand_path end