instiki/vendor/rails/activesupport/lib/active_support/option_merger.rb

24 lines
694 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
module ActiveSupport
class OptionMerger #:nodoc:
instance_methods.each do |method|
undef_method(method) if method !~ /^(__|instance_eval|class|object_id)/
2007-01-22 14:43:50 +01:00
end
2007-01-22 14:43:50 +01:00
def initialize(context, options)
@context, @options = context, options
end
2007-01-22 14:43:50 +01:00
private
def method_missing(method, *arguments, &block)
if arguments.last.is_a?(Proc)
proc = arguments.pop
arguments << lambda { |*args| @options.deep_merge(proc.call(*args)) }
else
arguments << (arguments.last.respond_to?(:to_hash) ? @options.deep_merge(arguments.pop) : @options.dup)
end
@context.__send__(method, *arguments, &block)
2007-01-22 14:43:50 +01:00
end
end
end