From 529136d670c46bd66b56c519d4f51ed8f86c75b1 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Fri, 4 Sep 2015 17:36:15 -0700 Subject: stop inheriting from Rack::Request Just include the modules necessary in the Request object to implement the things we need. This should make it easier to build delegate request objects because the API is smaller --- actionpack/lib/action_dispatch/http/headers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib/action_dispatch/http/headers.rb') diff --git a/actionpack/lib/action_dispatch/http/headers.rb b/actionpack/lib/action_dispatch/http/headers.rb index fbdec6c132..9a3aaca3f0 100644 --- a/actionpack/lib/action_dispatch/http/headers.rb +++ b/actionpack/lib/action_dispatch/http/headers.rb @@ -64,7 +64,7 @@ module ActionDispatch # If the code block is provided, then it will be run and # its result returned. def fetch(key, default = DEFAULT) - @req.get_header(env_name(key)) do + @req.fetch_header(env_name(key)) do return default unless default == DEFAULT return yield if block_given? raise NameError, key -- cgit v1.2.3