2010-04-29 14:34:41 -04:00
|
|
|
require 'active_support/deprecation'
|
2009-10-27 19:46:45 -04:00
|
|
|
require 'active_support/ordered_options'
|
2010-10-28 14:25:20 -04:00
|
|
|
require 'active_support/core_ext/hash/deep_dup'
|
2010-01-23 16:30:17 -05:00
|
|
|
require 'rails/paths'
|
|
|
|
require 'rails/rack'
|
2009-10-08 21:12:28 -04:00
|
|
|
|
2009-06-23 19:10:43 -04:00
|
|
|
module Rails
|
2010-01-23 16:30:17 -05:00
|
|
|
module Configuration
|
2010-05-16 06:03:11 -04:00
|
|
|
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 17:17:23 -04:00
|
|
|
def delete(*args, &block)
|
|
|
|
@operations << [:delete, args, block]
|
|
|
|
end
|
|
|
|
|
2010-05-16 06:03:11 -04:00
|
|
|
def merge_into(other)
|
|
|
|
@operations.each do |operation, args, block|
|
|
|
|
other.send(operation, *args, &block)
|
|
|
|
end
|
|
|
|
other
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-23 16:30:17 -05:00
|
|
|
class Generators #:nodoc:
|
2010-02-06 11:32:06 -05:00
|
|
|
attr_accessor :aliases, :options, :templates, :fallbacks, :colorize_logging
|
2011-05-24 19:03:15 -04:00
|
|
|
attr_reader :hidden_namespaces
|
2010-01-22 19:29:29 -05:00
|
|
|
|
|
|
|
def initialize
|
|
|
|
@aliases = Hash.new { |h,k| h[k] = {} }
|
|
|
|
@options = Hash.new { |h,k| h[k] = {} }
|
2010-02-01 04:48:59 -05:00
|
|
|
@fallbacks = {}
|
2010-02-06 11:32:06 -05:00
|
|
|
@templates = []
|
2010-01-22 19:29:29 -05:00
|
|
|
@colorize_logging = true
|
2011-05-24 19:03:15 -04:00
|
|
|
@hidden_namespaces = []
|
2010-01-22 19:29:29 -05:00
|
|
|
end
|
|
|
|
|
2010-10-28 14:25:20 -04:00
|
|
|
def initialize_copy(source)
|
|
|
|
@aliases = @aliases.deep_dup
|
|
|
|
@options = @options.deep_dup
|
|
|
|
@fallbacks = @fallbacks.deep_dup
|
|
|
|
@templates = @templates.dup
|
|
|
|
end
|
|
|
|
|
2011-05-24 19:03:15 -04:00
|
|
|
def hide_namespace(namespace)
|
|
|
|
@hidden_namespaces << namespace
|
|
|
|
end
|
|
|
|
|
2010-01-22 19:29:29 -05:00
|
|
|
def method_missing(method, *args)
|
|
|
|
method = method.to_s.sub(/=$/, '').to_sym
|
|
|
|
|
2010-01-28 13:03:47 -05:00
|
|
|
return @options[method] if args.empty?
|
|
|
|
|
2010-07-21 10:02:13 -04:00
|
|
|
if method == :rails || args.first.is_a?(Hash)
|
2010-01-22 19:29:29 -05:00
|
|
|
namespace, configuration = method, args.shift
|
|
|
|
else
|
|
|
|
namespace, configuration = args.shift, args.shift
|
2010-07-21 10:37:03 -04:00
|
|
|
namespace = namespace.to_sym if namespace.respond_to?(:to_sym)
|
2010-01-22 19:29:29 -05:00
|
|
|
@options[:rails][method] = namespace
|
|
|
|
end
|
|
|
|
|
|
|
|
if configuration
|
|
|
|
aliases = configuration.delete(:aliases)
|
|
|
|
@aliases[namespace].merge!(aliases) if aliases
|
|
|
|
@options[namespace].merge!(configuration)
|
|
|
|
end
|
|
|
|
end
|
2010-01-21 17:14:20 -05:00
|
|
|
end
|
2009-06-23 19:10:43 -04:00
|
|
|
end
|
2009-07-08 04:57:56 -04:00
|
|
|
end
|