Class: Rails::Application::Configuration

Inherits:
Engine::Configuration show all
Defined in:
lib/rails/application/configuration.rb

Instance Attribute Summary collapse

Attributes inherited from Engine::Configuration

#autoload_once_paths, #autoload_paths, #eager_load_paths, #middleware, #plugins, #root

Instance Method Summary collapse

Methods inherited from Engine::Configuration

#generators

Methods inherited from Railtie::Configuration

#after_initialize, #app_generators, #app_middleware, #before_configuration, #before_eager_load, #before_initialize, #generators, #respond_to?, #to_prepare, #to_prepare_blocks

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/rails/application/configuration.rb', line 19

def initialize(*)
  super
  self.encoding = "utf-8"
  @allow_concurrency           = false
  @consider_all_requests_local = false
  @filter_parameters           = []
  @helpers_paths               = []
  @dependency_loading          = true
  @serve_static_assets         = true
  @static_cache_control        = nil
  @force_ssl                   = false
  @ssl_options                 = {}
  @session_store               = :cookie_store
  @session_options             = {}
  @time_zone                   = "UTC"
  @log_level                   = nil
  @middleware                  = app_middleware
  @generators                  = app_generators
  @cache_store                 = [ :file_store, "#{root}/tmp/cache/" ]

  @assets = ActiveSupport::OrderedOptions.new
  @assets.enabled                  = false
  @assets.paths                    = []
  @assets.precompile               = [ Proc.new{ |path| !File.extname(path).in?(['.js', '.css']) },
                                       /(?:\/|\\|\A)application\.(css|js)$/ ]
  @assets.prefix                   = "/assets"
  @assets.version                  = ''
  @assets.debug                    = false
  @assets.compile                  = true
  @assets.digest                   = false
  @assets.manifest                 = nil
  @assets.cache_store              = [ :file_store, "#{root}/tmp/cache/assets/" ]
  @assets.js_compressor            = nil
  @assets.css_compressor           = nil
  @assets.initialize_on_precompile = true
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Rails::Railtie::Configuration

Instance Attribute Details

#allow_concurrencyObject

Returns the value of attribute allow_concurrency.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def allow_concurrency
  @allow_concurrency
end

#asset_hostObject

Returns the value of attribute asset_host.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def asset_host
  @asset_host
end

#asset_pathObject

Returns the value of attribute asset_path.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def asset_path
  @asset_path
end

#assetsObject

Returns the value of attribute assets.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def assets
  @assets
end

#cache_classesObject

Returns the value of attribute cache_classes.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def cache_classes
  @cache_classes
end

#cache_storeObject

Returns the value of attribute cache_store.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def cache_store
  @cache_store
end

#consider_all_requests_localObject

Returns the value of attribute consider_all_requests_local.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def consider_all_requests_local
  @consider_all_requests_local
end

#dependency_loadingObject

Returns the value of attribute dependency_loading.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def dependency_loading
  @dependency_loading
end

#encodingObject

Returns the value of attribute encoding.



17
18
19
# File 'lib/rails/application/configuration.rb', line 17

def encoding
  @encoding
end

#filter_parametersObject

Returns the value of attribute filter_parameters.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def filter_parameters
  @filter_parameters
end

#force_sslObject

Returns the value of attribute force_ssl.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def force_ssl
  @force_ssl
end

#helpers_pathsObject

Returns the value of attribute helpers_paths.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def helpers_paths
  @helpers_paths
end

#log_levelObject



111
112
113
# File 'lib/rails/application/configuration.rb', line 111

def log_level
  @log_level ||= Rails.env.production? ? :info : :debug
end

#loggerObject

Returns the value of attribute logger.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def logger
  @logger
end

#preload_frameworksObject

Returns the value of attribute preload_frameworks.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def preload_frameworks
  @preload_frameworks
end

#reload_pluginsObject

Returns the value of attribute reload_plugins.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def reload_plugins
  @reload_plugins
end

#secret_tokenObject

Returns the value of attribute secret_token.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def secret_token
  @secret_token
end

#serve_static_assetsObject

Returns the value of attribute serve_static_assets.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def serve_static_assets
  @serve_static_assets
end

#session_optionsObject

Returns the value of attribute session_options.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def session_options
  @session_options
end

#ssl_optionsObject

Returns the value of attribute ssl_options.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def ssl_options
  @ssl_options
end

#static_cache_controlObject

Returns the value of attribute static_cache_control.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def static_cache_control
  @static_cache_control
end

#time_zoneObject

Returns the value of attribute time_zone.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def time_zone
  @time_zone
end

#whiny_nilsObject

Returns the value of attribute whiny_nils.



8
9
10
# File 'lib/rails/application/configuration.rb', line 8

def whiny_nils
  @whiny_nils
end

Instance Method Details

#colorize_loggingObject



115
116
117
# File 'lib/rails/application/configuration.rb', line 115

def colorize_logging
  @colorize_logging
end

#colorize_logging=(val) ⇒ Object



119
120
121
122
123
# File 'lib/rails/application/configuration.rb', line 119

def colorize_logging=(val)
  @colorize_logging = val
  ActiveSupport::LogSubscriber.colorize_logging = val
  self.generators.colorize_logging = val
end

#compiled_asset_pathObject



56
57
58
# File 'lib/rails/application/configuration.rb', line 56

def compiled_asset_path
  "/"
end

#database_configurationObject

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.



106
107
108
109
# File 'lib/rails/application/configuration.rb', line 106

def database_configuration
  require 'erb'
  YAML::load(ERB.new(IO.read(paths["config/database"].first)).result)
end

#pathsObject



76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/rails/application/configuration.rb', line 76

def paths
  @paths ||= begin
    paths = super
    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"
    paths.add "public"
    paths.add "public/javascripts"
    paths.add "public/stylesheets"
    paths.add "tmp"
    paths
  end
end

#session_store(*args) ⇒ Object



125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/rails/application/configuration.rb', line 125

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

#threadsafe!Object

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.



95
96
97
98
99
100
101
# File 'lib/rails/application/configuration.rb', line 95

def threadsafe!
  self.preload_frameworks = true
  self.cache_classes = true
  self.dependency_loading = false
  self.allow_concurrency = true
  self
end