diff options
author | Xavier Noria <fxn@hashref.com> | 2012-07-28 00:56:59 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-07-28 01:01:01 +0200 |
commit | db340da219a154d3e8e8c1f55267e76ddd1328bf (patch) | |
tree | 3b6ee34a3e903ea17aedef5a9fb0bed68de0cda1 /actionpack | |
parent | 4b8b8c1b4d1b516a9ebf8e19d5a14956c5654ac8 (diff) | |
download | rails-db340da219a154d3e8e8c1f55267e76ddd1328bf.tar.gz rails-db340da219a154d3e8e8c1f55267e76ddd1328bf.tar.bz2 rails-db340da219a154d3e8e8c1f55267e76ddd1328bf.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 39ff58a447..2f46a375b1 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 |