Sha256: 255d6c6e97f49cee318cf710cc34c87ded9c6da607775ebf17ff8a25aac8106c

Contents?: true

Size: 777 Bytes

Versions: 73

Compression:

Stored size: 777 Bytes

Contents

# frozen_string_literal: true

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.first.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

73 entries across 65 versions & 10 rubygems

Version Path
activesupport-6.0.0.beta1 lib/active_support/option_merger.rb
nullifyable-0.1.0 vendor/bundle/gems/activesupport-5.2.2/lib/active_support/option_merger.rb
activesupport-5.2.2 lib/active_support/option_merger.rb
activesupport-5.2.2.rc1 lib/active_support/option_merger.rb
activesupport-5.2.1.1 lib/active_support/option_merger.rb
activesupport-5.2.1 lib/active_support/option_merger.rb
activesupport-5.2.1.rc1 lib/active_support/option_merger.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/activesupport-5.2.0/lib/active_support/option_merger.rb
activesupport-5.2.0 lib/active_support/option_merger.rb
activesupport-5.2.0.rc2 lib/active_support/option_merger.rb
activesupport-5.2.0.rc1 lib/active_support/option_merger.rb
activesupport-5.2.0.beta2 lib/active_support/option_merger.rb
activesupport-5.2.0.beta1 lib/active_support/option_merger.rb