diff options
author | José Valim <jose.valim@gmail.com> | 2012-01-03 05:55:51 -0800 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-01-03 05:55:51 -0800 |
commit | c032ff6e3ccf2890c5f404a1243b966f25737117 (patch) | |
tree | 7b937adf4c6e359f19c242631ced053d3a8344bd | |
parent | 853de2bd9ac572735fa6cf59fcf827e485a231c3 (diff) | |
parent | 1fc53df661aa89a0fbc15f07b0f28a38faf58894 (diff) | |
download | rails-c032ff6e3ccf2890c5f404a1243b966f25737117.tar.gz rails-c032ff6e3ccf2890c5f404a1243b966f25737117.tar.bz2 rails-c032ff6e3ccf2890c5f404a1243b966f25737117.zip |
Merge pull request #4275 from lest/3-2-deprecate-activesupport-base64
deprecate AS::Base64 methods without DeprecatedConstantProxy
-rw-r--r-- | activesupport/lib/active_support/base64.rb | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/activesupport/lib/active_support/base64.rb b/activesupport/lib/active_support/base64.rb index 8ffbb77108..bb4c955eea 100644 --- a/activesupport/lib/active_support/base64.rb +++ b/activesupport/lib/active_support/base64.rb @@ -30,18 +30,23 @@ unless Base64.respond_to?(:strict_encode64) end module ActiveSupport - Base64 = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('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) - ActiveSupport::Deprecation.warn "encode64s " \ - "is deprecated. Use Base64.strict_encode64 instead", caller - encode64(value).gsub(/\n/, '') + module Base64 + def self.encode64(value) + ActiveSupport::Deprecation.warn "ActiveSupport::Base64.encode64 " \ + "is deprecated. Use Base64.encode64 instead", caller + ::Base64.encode64(value) + end + + def self.decode64(value) + ActiveSupport::Deprecation.warn "ActiveSupport::Base64.decode64 " \ + "is deprecated. Use Base64.decode64 instead", caller + ::Base64.encode64(value) + end + + def self.encode64s(value) + ActiveSupport::Deprecation.warn "ActiveSupport::Base64.encode64s " \ + "is deprecated. Use Base64.strict_encode64 instead", caller + ::Base64.strict_encode64(value) + end end end |