diff options
author | Xavier Noria <fxn@hashref.com> | 2012-07-28 00:56:59 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-07-28 00:58:00 +0200 |
commit | b5dfc4715030dfeaf3e66af4653cb9e2b9f1da70 (patch) | |
tree | d0dede652e72a0001e6219e05ac3fab149cd105f /actionpack | |
parent | acb6848468bc4ec035201b23af9affeb8279711f (diff) | |
download | rails-b5dfc4715030dfeaf3e66af4653cb9e2b9f1da70.tar.gz rails-b5dfc4715030dfeaf3e66af4653cb9e2b9f1da70.tar.bz2 rails-b5dfc4715030dfeaf3e66af4653cb9e2b9f1da70.zip |
adds a missing require from Active Support
This file uses mattr_accessor.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index 771f075275..919882223c 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/object/blank' require 'active_support/core_ext/hash/keys' +require 'active_support/core_ext/module/attribute_accessors' module ActionDispatch class Request < Rack::Request |