aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/base64.rb
diff options
context:
space:
mode:
authorVasiliy Ermolovich <younash@gmail.com>2011-12-27 22:46:44 +0300
committerVasiliy Ermolovich <younash@gmail.com>2011-12-27 22:46:44 +0300
commita19d0f5a66f17c356c5255c5d5930a73a25f627a (patch)
tree63d535e08e31774c417e960ab306431c144c0fb7 /activesupport/lib/active_support/base64.rb
parent1a7701522d2308df801ba1f375cb0626386928a5 (diff)
downloadrails-a19d0f5a66f17c356c5255c5d5930a73a25f627a.tar.gz
rails-a19d0f5a66f17c356c5255c5d5930a73a25f627a.tar.bz2
rails-a19d0f5a66f17c356c5255c5d5930a73a25f627a.zip
deprecate Base64.encode64s from AS. Use Base64.strict_encode64 instead
Diffstat (limited to 'activesupport/lib/active_support/base64.rb')
-rw-r--r--activesupport/lib/active_support/base64.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/base64.rb b/activesupport/lib/active_support/base64.rb
index b43d2ce9a3..41a1a3469d 100644
--- a/activesupport/lib/active_support/base64.rb
+++ b/activesupport/lib/active_support/base64.rb
@@ -3,12 +3,16 @@ require 'base64'
module ActiveSupport
Base64 = ::Base64
+ # *DEPRECATED*: Use +Base64.strict_encode64+ instead.
+ #
# Encodes the value as base64 without the newline breaks. This makes the base64 encoding readily usable as URL parameters
# or memcache keys without further processing.
#
# ActiveSupport::Base64.encode64s("Original unencoded string")
# # => "T3JpZ2luYWwgdW5lbmNvZGVkIHN0cmluZw=="
def Base64.encode64s(value)
- encode64(value).gsub(/\n/, '')
+ ActiveSupport::Deprecation.warn "encode64s " \
+ "is deprecated. Use Base64.strict_encode64 instead", caller
+ strict_encode64(value)
end
end