2010-01-23 16:30:17 -05:00
|
|
|
require 'rails/railtie/configuration'
|
|
|
|
|
|
|
|
module Rails
|
|
|
|
class Engine
|
|
|
|
class Configuration < ::Rails::Railtie::Configuration
|
|
|
|
attr_reader :root
|
2010-10-02 12:38:23 -04:00
|
|
|
attr_writer :middleware, :eager_load_paths, :autoload_once_paths, :autoload_paths
|
|
|
|
attr_accessor :plugins, :asset_path
|
2010-01-23 16:30:17 -05:00
|
|
|
|
|
|
|
def initialize(root=nil)
|
2010-03-04 18:06:25 -05:00
|
|
|
super()
|
2010-01-23 16:30:17 -05:00
|
|
|
@root = root
|
2010-10-28 14:25:20 -04:00
|
|
|
@generators = app_generators.dup
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
|
2010-10-02 12:38:23 -04:00
|
|
|
# Returns the middleware stack for the engine.
|
|
|
|
def middleware
|
|
|
|
@middleware ||= Rails::Configuration::MiddlewareStackProxy.new
|
|
|
|
end
|
|
|
|
|
|
|
|
# Holds generators configuration:
|
|
|
|
#
|
|
|
|
# config.generators do |g|
|
|
|
|
# g.orm :datamapper, :migration => true
|
|
|
|
# g.template_engine :haml
|
|
|
|
# g.test_framework :rspec
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# If you want to disable color in console, do:
|
|
|
|
#
|
|
|
|
# config.generators.colorize_logging = false
|
|
|
|
#
|
|
|
|
def generators #:nodoc
|
|
|
|
@generators ||= Rails::Configuration::Generators.new
|
|
|
|
yield(@generators) if block_given?
|
|
|
|
@generators
|
|
|
|
end
|
|
|
|
|
2010-01-23 16:30:17 -05:00
|
|
|
def paths
|
|
|
|
@paths ||= begin
|
|
|
|
paths = Rails::Paths::Root.new(@root)
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "app", :eager_load => true, :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/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 "public"
|
|
|
|
paths.add "public/javascripts"
|
|
|
|
paths.add "public/stylesheets"
|
|
|
|
paths.add "vendor", :load_path => true
|
|
|
|
paths.add "vendor/plugins"
|
2010-01-23 16:30:17 -05:00
|
|
|
paths
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def root=(value)
|
|
|
|
@root = paths.path = Pathname.new(value).expand_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def eager_load_paths
|
|
|
|
@eager_load_paths ||= paths.eager_load
|
|
|
|
end
|
|
|
|
|
2010-06-22 17:17:20 -04:00
|
|
|
def autoload_once_paths
|
2010-06-27 18:57:47 -04:00
|
|
|
@autoload_once_paths ||= paths.autoload_once
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
|
2010-06-22 17:17:20 -04:00
|
|
|
def autoload_paths
|
2010-06-27 18:57:47 -04:00
|
|
|
@autoload_paths ||= paths.autoload_paths
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
2010-08-04 16:22:06 -04:00
|
|
|
|
|
|
|
def compiled_asset_path
|
|
|
|
asset_path % "" if asset_path
|
|
|
|
end
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
end
|
2010-07-27 22:24:56 -04:00
|
|
|
end
|