method

merge_argument_options!

rails latest stable - Class: ActiveSupport::OptionMerger

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.1.0) is shown here.

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