2010-05-17 11:41:54 -04:00
|
|
|
require 'active_support/core_ext/string/encoding'
|
2010-01-23 16:30:17 -05:00
|
|
|
require 'rails/engine/configuration'
|
|
|
|
|
|
|
|
module Rails
|
|
|
|
class Application
|
|
|
|
class Configuration < ::Rails::Engine::Configuration
|
2011-04-15 13:57:52 -04:00
|
|
|
attr_accessor :allow_concurrency, :asset_host, :asset_path, :assets,
|
|
|
|
:cache_classes, :cache_store, :consider_all_requests_local,
|
|
|
|
:dependency_loading, :encoding, :filter_parameters,
|
|
|
|
:force_ssl, :helpers_paths, :logger, :preload_frameworks,
|
|
|
|
:reload_plugins, :secret_token, :serve_static_assets,
|
2011-05-03 07:07:39 -04:00
|
|
|
:static_cache_control, :session_options, :time_zone, :whiny_nils
|
2010-01-23 16:30:17 -05:00
|
|
|
|
2011-01-05 14:19:09 -05:00
|
|
|
attr_writer :log_level
|
|
|
|
|
2010-01-23 16:30:17 -05:00
|
|
|
def initialize(*)
|
|
|
|
super
|
2010-08-15 19:29:27 -04:00
|
|
|
self.encoding = "utf-8"
|
2011-01-05 14:19:09 -05:00
|
|
|
@allow_concurrency = false
|
2010-04-06 20:24:29 -04:00
|
|
|
@consider_all_requests_local = false
|
2011-01-05 14:19:09 -05:00
|
|
|
@filter_parameters = []
|
|
|
|
@helpers_paths = []
|
|
|
|
@dependency_loading = true
|
|
|
|
@serve_static_assets = true
|
2011-05-03 07:07:39 -04:00
|
|
|
@static_cache_control = nil
|
2011-03-27 12:55:46 -04:00
|
|
|
@force_ssl = false
|
2011-01-05 14:19:09 -05:00
|
|
|
@session_store = :cookie_store
|
|
|
|
@session_options = {}
|
|
|
|
@time_zone = "UTC"
|
|
|
|
@log_level = nil
|
|
|
|
@middleware = app_middleware
|
|
|
|
@generators = app_generators
|
2011-07-12 21:30:11 -04:00
|
|
|
@cache_store = [ :file_store, "#{root}/tmp/cache/" ]
|
2011-03-30 22:56:15 -04:00
|
|
|
|
|
|
|
@assets = ActiveSupport::OrderedOptions.new
|
2011-08-23 00:19:25 -04:00
|
|
|
@assets.enabled = false
|
|
|
|
@assets.paths = []
|
|
|
|
@assets.precompile = [ /\w+\.(?!js|css).+/, /application.(css|js)$/ ]
|
|
|
|
@assets.prefix = "/assets"
|
|
|
|
@assets.version = ''
|
|
|
|
@assets.debug = false
|
|
|
|
@assets.allow_debugging = false
|
2011-04-22 11:49:55 -04:00
|
|
|
|
2011-07-12 21:55:34 -04:00
|
|
|
@assets.cache_store = [ :file_store, "#{root}/tmp/cache/assets/" ]
|
2011-04-22 11:49:55 -04:00
|
|
|
@assets.js_compressor = nil
|
|
|
|
@assets.css_compressor = nil
|
2010-04-06 20:24:29 -04:00
|
|
|
end
|
|
|
|
|
2010-08-04 16:22:06 -04:00
|
|
|
def compiled_asset_path
|
|
|
|
"/"
|
|
|
|
end
|
|
|
|
|
2010-04-06 20:24:29 -04:00
|
|
|
def encoding=(value)
|
|
|
|
@encoding = value
|
2010-05-17 11:41:54 -04:00
|
|
|
if "ruby".encoding_aware?
|
2010-04-06 20:24:29 -04:00
|
|
|
Encoding.default_external = value
|
2010-05-17 11:41:54 -04:00
|
|
|
Encoding.default_internal = value
|
|
|
|
else
|
|
|
|
$KCODE = value
|
|
|
|
if $KCODE == "NONE"
|
|
|
|
raise "The value you specified for config.encoding is " \
|
|
|
|
"invalid. The possible values are UTF8, SJIS, or EUC"
|
|
|
|
end
|
2010-04-06 20:24:29 -04:00
|
|
|
end
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def paths
|
|
|
|
@paths ||= begin
|
|
|
|
paths = super
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "config/database", :with => "config/database.yml"
|
|
|
|
paths.add "config/environment", :with => "config/environment.rb"
|
|
|
|
paths.add "lib/templates"
|
|
|
|
paths.add "log", :with => "log/#{Rails.env}.log"
|
2011-04-15 13:57:52 -04:00
|
|
|
paths.add "public"
|
|
|
|
paths.add "public/javascripts"
|
|
|
|
paths.add "public/stylesheets"
|
2010-10-06 11:18:59 -04:00
|
|
|
paths.add "tmp"
|
2010-01-23 16:30:17 -05:00
|
|
|
paths
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Enable threaded mode. Allows concurrent requests to controller actions and
|
|
|
|
# multiple database connections. Also disables automatic dependency loading
|
|
|
|
# after boot, and disables reloading code on every request, as these are
|
|
|
|
# fundamentally incompatible with thread safety.
|
|
|
|
def threadsafe!
|
|
|
|
self.preload_frameworks = true
|
|
|
|
self.cache_classes = true
|
|
|
|
self.dependency_loading = false
|
2010-02-01 05:40:27 -05:00
|
|
|
self.allow_concurrency = true
|
2010-01-23 16:30:17 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
# Loads and returns the contents of the #database_configuration_file. The
|
|
|
|
# contents of the file are processed via ERB before being sent through
|
|
|
|
# YAML::load.
|
|
|
|
def database_configuration
|
|
|
|
require 'erb'
|
2010-10-06 11:18:59 -04:00
|
|
|
YAML::load(ERB.new(IO.read(paths["config/database"].first)).result)
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def log_level
|
|
|
|
@log_level ||= Rails.env.production? ? :info : :debug
|
|
|
|
end
|
2010-03-02 16:05:25 -05:00
|
|
|
|
|
|
|
def colorize_logging
|
|
|
|
@colorize_logging
|
|
|
|
end
|
|
|
|
|
|
|
|
def colorize_logging=(val)
|
|
|
|
@colorize_logging = val
|
2010-06-24 07:23:43 -04:00
|
|
|
ActiveSupport::LogSubscriber.colorize_logging = val
|
2010-03-02 16:05:25 -05:00
|
|
|
self.generators.colorize_logging = val
|
|
|
|
end
|
2010-03-26 13:47:55 -04:00
|
|
|
|
|
|
|
def session_store(*args)
|
|
|
|
if args.empty?
|
|
|
|
case @session_store
|
|
|
|
when :disabled
|
|
|
|
nil
|
|
|
|
when :active_record_store
|
|
|
|
ActiveRecord::SessionStore
|
|
|
|
when Symbol
|
|
|
|
ActionDispatch::Session.const_get(@session_store.to_s.camelize)
|
|
|
|
else
|
|
|
|
@session_store
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@session_store = args.shift
|
|
|
|
@session_options = args.shift || {}
|
|
|
|
end
|
|
|
|
end
|
2010-01-23 16:30:17 -05:00
|
|
|
end
|
|
|
|
end
|
2010-03-20 13:34:21 -04:00
|
|
|
end
|