Sha256: 5e60a490bcda3d90e770cd75d42b573710658a1452efdb4e037bee272f47a1aa

Contents?: true

Size: 1.02 KB

Versions: 16

Compression:

Stored size: 1.02 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.first.is_a?(Proc)
          proc = arguments.pop
          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?(*arguments)
        @context.respond_to?(*arguments)
      end
  end
end

Version data entries

16 entries across 14 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/option_merger.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/option_merger.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/option_merger.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/option_merger.rb
activesupport-7.0.3.1 lib/active_support/option_merger.rb
activesupport-7.0.3 lib/active_support/option_merger.rb
activesupport-7.0.2.4 lib/active_support/option_merger.rb
activesupport-7.0.2.3 lib/active_support/option_merger.rb
activesupport-7.0.2.2 lib/active_support/option_merger.rb
activesupport-7.0.2.1 lib/active_support/option_merger.rb
activesupport-7.0.2 lib/active_support/option_merger.rb
activesupport-7.0.1 lib/active_support/option_merger.rb
activesupport-7.0.0 lib/active_support/option_merger.rb
activesupport-7.0.0.rc3 lib/active_support/option_merger.rb
activesupport-7.0.0.rc2 lib/active_support/option_merger.rb
activesupport-7.0.0.rc1 lib/active_support/option_merger.rb