Method: Excon::Headers#merge!
- Defined in:
- lib/excon/headers.rb
#merge!(other_hash) ⇒ Object
67 68 69 70 71 72 |
# File 'lib/excon/headers.rb', line 67 def merge!(other_hash) other_hash.each do |key, value| self[key] = value end raw_merge!(other_hash) end |