Sha256: 669cd95cdf52ca206815b44dde894a5d0d117a9b0f336c6ebb088d48841fd7de

Contents?: true

Size: 745 Bytes

Versions: 348

Compression:

Stored size: 745 Bytes

Contents

require 'active_support/core_ext/hash/deep_merge'

module ActiveSupport
  class OptionMerger #:nodoc:
    instance_methods.each do |method|
      undef_method(method) if method !~ /^(__|instance_eval|class|object_id)/
    end

    def initialize(context, options)
      @context, @options = context, options
    end

    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)
      end
  end
end

Version data entries

348 entries across 304 versions & 30 rubygems

Version Path
activesupport-4.0.1.rc3 lib/active_support/option_merger.rb
activesupport-4.0.1.rc2 lib/active_support/option_merger.rb
activesupport-4.0.1.rc1 lib/active_support/option_merger.rb
activesupport-3.2.15 lib/active_support/option_merger.rb
activesupport-3.2.15.rc3 lib/active_support/option_merger.rb
activesupport-3.2.15.rc2 lib/active_support/option_merger.rb
activesupport-3.2.15.rc1 lib/active_support/option_merger.rb
activesupport-3.2.14 lib/active_support/option_merger.rb
activesupport-3.2.14.rc2 lib/active_support/option_merger.rb
challah-1.0.0 vendor/bundle/gems/activesupport-4.0.0/lib/active_support/option_merger.rb
activesupport-3.2.14.rc1 lib/active_support/option_merger.rb
classiccms-0.7.2 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb
classiccms-0.7.1 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb
activesupport-4.0.0 lib/active_support/option_merger.rb
swipe-rails-0.0.5 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/option_merger.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/option_merger.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/option_merger.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/option_merger.rb
activesupport-4.0.0.rc2 lib/active_support/option_merger.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/option_merger.rb