-
Stan Hu authored
The Rack spec (https://github.com/rack/rack/blob/master/SPEC.rdoc#the-headers-) expects all HTTP header values to be strings; integers are not allowed. Some Rack servers, such as Thin, fail if you attempt to assign a integer because they attempt to run string operations (e.g. `chomp`) on the value.
252cb923