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-5.2.8.1 lib/active_support/option_merger.rb
activesupport-5.2.8 lib/active_support/option_merger.rb
activesupport-5.2.7.1 lib/active_support/option_merger.rb
activesupport-5.2.7 lib/active_support/option_merger.rb
activesupport-5.2.6.3 lib/active_support/option_merger.rb
activesupport-5.2.6.2 lib/active_support/option_merger.rb
activesupport-5.2.6.1 lib/active_support/option_merger.rb
activesupport-5.2.6 lib/active_support/option_merger.rb
activesupport-5.2.4.6 lib/active_support/option_merger.rb
activesupport-5.2.5 lib/active_support/option_merger.rb
activesupport-5.2.4.5 lib/active_support/option_merger.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/option_merger.rb
activesupport-5.2.4.4 lib/active_support/option_merger.rb
activesupport-5.2.4.3 lib/active_support/option_merger.rb
activesupport-6.0.2.2 lib/active_support/option_merger.rb
activesupport-5.2.4.2 lib/active_support/option_merger.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/option_merger.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/option_merger.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/option_merger.rb
activesupport-6.0.2.1 lib/active_support/option_merger.rb