Methods
#
N
Class Public methods
new(*args)
# File actionpack/lib/action_dispatch/http/headers.rb, line 8
def initialize(*args)
  if args.size == 1 && args[0].is_a?(Hash)
    super()
    update(args[0])
  else
    super
  end
end
Instance Public methods
[](header_name)
# File actionpack/lib/action_dispatch/http/headers.rb, line 17
def [](header_name)
  if include?(header_name)
    super
  else
    super(env_name(header_name))
  end
end