diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-23 14:54:58 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-23 14:57:30 -0300 |
commit | 4128e70791ca09c405deda15764e5c09e6c0a12a (patch) | |
tree | 4a91970e54426540b06fe0a5754fe0272c56c322 /actionpack | |
parent | d949460f9bb1c1fc81777b886b00d1a8a9826765 (diff) | |
download | rails-4128e70791ca09c405deda15764e5c09e6c0a12a.tar.gz rails-4128e70791ca09c405deda15764e5c09e6c0a12a.tar.bz2 rails-4128e70791ca09c405deda15764e5c09e6c0a12a.zip |
Add nodoc to some private constants [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index 12e61308a3..139706ecb9 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -181,7 +181,7 @@ module ActionDispatch # to the Message{Encryptor,Verifier} allows us to handle the # (de)serialization step within the cookie jar, which gives us the # opportunity to detect and migrate legacy cookies. - module VerifyAndUpgradeLegacySignedMessage + module VerifyAndUpgradeLegacySignedMessage # :nodoc: def initialize(*args) super @legacy_verifier = ActiveSupport::MessageVerifier.new(@options[:secret_token], serializer: ActiveSupport::MessageEncryptor::NullSerializer) @@ -392,7 +392,7 @@ module ActionDispatch end end - class JsonSerializer + class JsonSerializer # :nodoc: def self.load(value) ActiveSupport::JSON.decode(value) end @@ -402,7 +402,7 @@ module ActionDispatch end end - module SerializedCookieJars + module SerializedCookieJars # :nodoc: MARSHAL_SIGNATURE = "\x04\x08".freeze protected |