instance method
[]
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
[](header_name)
No documentation comment.
Parameters
-
header_namereq
Source
# File actionpack/lib/action_dispatch/http/headers.rb, line 16
def [](header_name)
if include?(header_name)
super
else
super(env_name(header_name))
end
end
Defined in actionpack/lib/action_dispatch/http/headers.rb line 16
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Http::Headers