method

merge_argument_options!

merge_argument_options!(arguments)
private

No documentation available.

# File activesupport/lib/active_support/option_merger.rb, line 17
      def merge_argument_options!(arguments)
        arguments << if arguments.last.respond_to? :to_hash
          @options.merge(arguments.pop)
        else
          @options.dup
        end
      end