aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/cookies.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-09-04 17:36:15 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-09-04 17:37:22 -0700
commit529136d670c46bd66b56c519d4f51ed8f86c75b1 (patch)
tree2888e7d0f8fb8a58184dd520816def1ba08e9e13 /actionpack/lib/action_dispatch/middleware/cookies.rb
parent3f24fa338ffb63e3f25d1c72f0dc65665fd97cec (diff)
downloadrails-529136d670c46bd66b56c519d4f51ed8f86c75b1.tar.gz
rails-529136d670c46bd66b56c519d4f51ed8f86c75b1.tar.bz2
rails-529136d670c46bd66b56c519d4f51ed8f86c75b1.zip
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
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/cookies.rb')
-rw-r--r--actionpack/lib/action_dispatch/middleware/cookies.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb
index f958a88e4b..f37439e4d7 100644
--- a/actionpack/lib/action_dispatch/middleware/cookies.rb
+++ b/actionpack/lib/action_dispatch/middleware/cookies.rb
@@ -4,9 +4,9 @@ require 'active_support/message_verifier'
require 'active_support/json'
module ActionDispatch
- class Request < Rack::Request
+ class Request
def cookie_jar
- get_header('action_dispatch.cookies'.freeze) do
+ fetch_header('action_dispatch.cookies'.freeze) do
self.cookie_jar = Cookies::CookieJar.build(self, cookies)
end
end