method
merge_argument_options!
rails latest stable - Class:
ActiveSupport::OptionMerger
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