rails--rails/railties/lib/rails/configuration.rb

158 lines
4.8 KiB
Ruby
Raw Normal View History

2010-04-29 18:34:41 +00:00
require 'active_support/deprecation'
2009-10-27 23:46:45 +00:00
require 'active_support/ordered_options'
2010-01-23 21:30:17 +00:00
require 'rails/paths'
require 'rails/rack'
module Rails
2010-01-23 21:30:17 +00:00
module Configuration
class MiddlewareStackProxy #:nodoc:
def initialize
@operations = []
end
def insert_before(*args, &block)
@operations << [:insert_before, args, block]
end
alias :insert :insert_before
def insert_after(*args, &block)
@operations << [:insert_after, args, block]
end
def swap(*args, &block)
@operations << [:swap, args, block]
end
def use(*args, &block)
@operations << [:use, args, block]
end
2010-06-07 21:17:23 +00:00
def delete(*args, &block)
@operations << [:delete, args, block]
end
def merge_into(other)
@operations.each do |operation, args, block|
other.send(operation, *args, &block)
end
other
end
end
2010-01-23 21:30:17 +00:00
class Generators #:nodoc:
attr_accessor :aliases, :options, :templates, :fallbacks, :colorize_logging
def initialize
@aliases = Hash.new { |h,k| h[k] = {} }
@options = Hash.new { |h,k| h[k] = {} }
2010-02-01 09:48:59 +00:00
@fallbacks = {}
@templates = []
@colorize_logging = true
end
def method_missing(method, *args)
method = method.to_s.sub(/=$/, '').to_sym
2010-01-28 18:03:47 +00:00
return @options[method] if args.empty?
if method == :rails
namespace, configuration = :rails, args.shift
elsif args.first.is_a?(Hash)
namespace, configuration = method, args.shift
else
namespace, configuration = args.shift, args.shift
@options[:rails][method] = namespace
end
if configuration
aliases = configuration.delete(:aliases)
@aliases[namespace].merge!(aliases) if aliases
@options[namespace].merge!(configuration)
end
end
end
2010-01-23 21:30:17 +00:00
module Deprecated
def frameworks(*args)
raise "config.frameworks in no longer supported. See the generated " \
"config/boot.rb for steps on how to limit the frameworks that " \
"will be loaded"
end
2010-01-23 21:30:17 +00:00
alias :frameworks= :frameworks
2010-01-23 21:30:17 +00:00
def view_path=(value)
ActiveSupport::Deprecation.warn "config.view_path= is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.app.views= instead", caller
2010-01-23 21:30:17 +00:00
paths.app.views = value
end
2010-01-23 21:30:17 +00:00
def view_path
ActiveSupport::Deprecation.warn "config.view_path is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.app.views instead", caller
2010-01-23 21:30:17 +00:00
paths.app.views.to_a.first
end
2010-01-23 21:30:17 +00:00
def routes_configuration_file=(value)
ActiveSupport::Deprecation.warn "config.routes_configuration_file= is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.config.routes= instead", caller
2010-01-23 21:30:17 +00:00
paths.config.routes = value
end
2010-01-23 21:30:17 +00:00
def routes_configuration_file
ActiveSupport::Deprecation.warn "config.routes_configuration_file is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.config.routes instead", caller
2010-01-23 21:30:17 +00:00
paths.config.routes.to_a.first
end
2010-01-23 21:30:17 +00:00
def database_configuration_file=(value)
ActiveSupport::Deprecation.warn "config.database_configuration_file= is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.config.database= instead", caller
2010-01-23 21:30:17 +00:00
paths.config.database = value
end
2010-01-23 21:30:17 +00:00
def database_configuration_file
ActiveSupport::Deprecation.warn "config.database_configuration_file is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.config.database instead", caller
2010-01-23 21:30:17 +00:00
paths.config.database.to_a.first
end
2010-01-23 21:30:17 +00:00
def log_path=(value)
ActiveSupport::Deprecation.warn "config.log_path= is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.log= instead", caller
2010-01-23 21:30:17 +00:00
paths.config.log = value
end
2010-01-23 21:30:17 +00:00
def log_path
ActiveSupport::Deprecation.warn "config.log_path is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.log instead", caller
2010-01-23 21:30:17 +00:00
paths.config.log.to_a.first
end
2010-01-23 21:30:17 +00:00
def controller_paths=(value)
ActiveSupport::Deprecation.warn "config.controller_paths= is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.app.controllers= instead", caller
2010-01-23 21:30:17 +00:00
paths.app.controllers = value
end
2010-01-22 15:24:44 +00:00
2010-01-23 21:30:17 +00:00
def controller_paths
ActiveSupport::Deprecation.warn "config.controller_paths is deprecated, " <<
2010-01-30 11:30:15 +00:00
"please do paths.app.controllers instead", caller
2010-01-23 21:30:17 +00:00
paths.app.controllers.to_a.uniq
end
def cookie_secret=(value)
ActiveSupport::Deprecation.warn "config.cookie_secret= is deprecated, " <<
"please use config.secret_token= instead", caller
self.secret_token = value
end
def cookie_secret
ActiveSupport::Deprecation.warn "config.cookie_secret is deprecated, " <<
"please use config.secret_token instead", caller
self.secret_token
end
2010-01-22 15:24:44 +00:00
end
end
2009-07-08 08:57:56 +00:00
end