# File lib/action_dispatch/http/headers.rb, line 21 def [](key) @env[env_name(key)] end
# File lib/action_dispatch/http/headers.rb, line 25 def []=(key, value) @env[env_name(key)] = value end
# File lib/action_dispatch/http/headers.rb, line 36 def each(&block) @env.each(&block) end
# File lib/action_dispatch/http/headers.rb, line 32 def fetch(key, *args, &block) @env.fetch env_name(key), *args, &block end
# File lib/action_dispatch/http/headers.rb, line 29 def key?(key); @env.key? key; end
Generated with the Darkfish Rdoc Generator 2.