2010-01-23 16:30:17 -05:00
|
|
|
require 'rails/railtie/configuration'
|
|
|
|
|
|
|
|
module Rails
|
|
|
|
class Engine
|
|
|
|
class Configuration < ::Rails::Railtie::Configuration
|
|
|
|
attr_reader :root
|
2015-09-29 14:01:14 -04:00
|
|
|
attr_accessor :middleware
|
|
|
|
attr_writer :eager_load_paths, :autoload_once_paths, :autoload_paths
|
2010-01-23 16:30:17 -05:00
|
|
|
|
|
|
|
def initialize(root=nil)
|
2010-03-04 18:06:25 -05:00
|
|
|
super()
|
2012-05-23 19:41:40 -04:00
|
|
|
@root = root
|
2010-10-28 14:25:20 -04:00
|
|
|
@generators = app_generators.dup
|
2015-09-29 14:01:14 -04:00
|
|
|
@middleware = Rails::Configuration::MiddlewareStackProxy.new
|
2010-10-02 12:38:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Holds generators configuration:
|
|
|
|
#
|
|
|
|
# config.generators do |g|
|
2012-10-14 06:03:39 -04:00
|
|
|
# g.orm :data_mapper, migration: true
|
2010-10-02 12:38:23 -04:00
|
|
|
# g.template_engine :haml
|
|
|
|
# g.test_framework :rspec
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# If you want to disable color in console, do:
|
|
|
|
#
|
|
|
|
# config.generators.colorize_logging = false
|
|
|
|
#
|
2015-10-22 12:52:19 -04:00
|
|
|
def generators
|
2010-10-02 12:38:23 -04:00
|
|
|
@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)
|
2012-12-18 10:26:08 -05:00
|
|
|
|
2014-12-26 12:29:53 -05:00
|
|
|
paths.add "app", eager_load: true, glob: "{*,*/concerns}"
|
2012-10-14 06:03:39 -04:00
|
|
|
paths.add "app/assets", glob: "*"
|
2013-02-19 02:22:37 -05:00
|
|
|
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
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "app/views"
|
2012-12-18 10:26:08 -05:00
|
|
|
|
2012-10-14 06:03:39 -04:00
|
|
|
paths.add "lib", load_path: true
|
|
|
|
paths.add "lib/assets", glob: "*"
|
|
|
|
paths.add "lib/tasks", glob: "**/*.rake"
|
2012-12-18 10:26:08 -05:00
|
|
|
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "config"
|
2012-10-14 06:03:39 -04:00
|
|
|
paths.add "config/environments", glob: "#{Rails.env}.rb"
|
|
|
|
paths.add "config/initializers", glob: "**/*.rb"
|
|
|
|
paths.add "config/locales", glob: "*.{rb,yml}"
|
2012-04-25 17:06:20 -04:00
|
|
|
paths.add "config/routes.rb"
|
2012-12-18 10:26:08 -05:00
|
|
|
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "db"
|
|
|
|
paths.add "db/migrate"
|
2012-04-25 17:12:44 -04:00
|
|
|
paths.add "db/seeds.rb"
|
2012-12-18 10:26:08 -05:00
|
|
|
|
2012-10-14 06:03:39 -04:00
|
|
|
paths.add "vendor", load_path: true
|
|
|
|
paths.add "vendor/assets", glob: "*"
|
2012-12-18 10:26:08 -05:00
|
|
|
|
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
|
2013-02-19 02:22:37 -05:00
|
|
|
@eager_load_paths ||= paths.eager_load
|
2010-01-23 16:30:17 -05:00
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|
2010-07-27 22:24:56 -04:00
|
|
|
end
|