Class: WWW::Mechanize::Headers

Inherits:
Hash
  • Object
show all
Defined in:
lib/www/mechanize/headers.rb

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object



4
5
6
# File 'lib/www/mechanize/headers.rb', line 4

def [](key)
  super(key.downcase)
end

#[]=(key, value) ⇒ Object



7
8
9
# File 'lib/www/mechanize/headers.rb', line 7

def []=(key, value)
  super(key.downcase, value)
end