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
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/option_merger.rb
activesupport-3.2.22.5 lib/active_support/option_merger.rb
activesupport-3.2.22.4 lib/active_support/option_merger.rb
activesupport-3.2.22.3 lib/active_support/option_merger.rb
activesupport-3.2.22.2 lib/active_support/option_merger.rb
activesupport-3.2.22.1 lib/active_support/option_merger.rb
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/option_merger.rb
activesupport-3.2.22 lib/active_support/option_merger.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/option_merger.rb
activesupport-3.2.21 lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/option_merger.rb
activesupport-3.2.20 lib/active_support/option_merger.rb