Sha256: 34eacd8aa6d026020dc3a92ee003d351b6fd2e7fe35df9d1ee99d9b81966956d

Contents?: true

Size: 1.03 KB

Versions: 23

Compression:

Stored size: 1.03 KB

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) unless method.start_with?("__", "instance_eval", "class", "object_id")
    end

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

    private
      def method_missing(method, *arguments, &block)
        options = nil
        if arguments.size == 1 && arguments.first.is_a?(Proc)
          proc = arguments.shift
          arguments << lambda { |*args| @options.deep_merge(proc.call(*args)) }
        elsif arguments.last.respond_to?(:to_hash)
          options = @options.deep_merge(arguments.pop)
        else
          options = @options
        end

        if options
          @context.__send__(method, *arguments, **options, &block)
        else
          @context.__send__(method, *arguments, &block)
        end
      end

      def respond_to_missing?(...)
        @context.respond_to?(...)
      end
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
activesupport-8.0.1 lib/active_support/option_merger.rb
activesupport-8.0.0.1 lib/active_support/option_merger.rb
activesupport-7.2.2.1 lib/active_support/option_merger.rb
activesupport-8.0.0 lib/active_support/option_merger.rb
activesupport-7.2.2 lib/active_support/option_merger.rb
activesupport-8.0.0.rc2 lib/active_support/option_merger.rb
activesupport-7.2.1.2 lib/active_support/option_merger.rb
activesupport-8.0.0.rc1 lib/active_support/option_merger.rb
activesupport-7.2.1.1 lib/active_support/option_merger.rb
activesupport-8.0.0.beta1 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha9 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha8 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha7 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha4 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha3 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha2 lib/active_support/option_merger.rb
omg-activesupport-8.0.0.alpha1 lib/active_support/option_merger.rb
activesupport-7.2.1 lib/active_support/option_merger.rb
activesupport-7.2.0 lib/active_support/option_merger.rb
activesupport-7.2.0.rc1 lib/active_support/option_merger.rb