Keys in Ruby Hashes are Case Sensitive
> a = {}
=> {}
> a['content-type'] = "My first string"
=> "My first string"
> a['Content-Type'] = "My second string"
=> "My second string"
> a
=> {"content-type"=>"My first string",
"Content-Type"=>"My second string"}