Source: show | on GitHub
# File activesupport/lib/active_support/base64.rb, line 42 42: def self.decode64(value) 43: ActiveSupport::Deprecation.warn "ActiveSupport::Base64.decode64 " \ 44: "is deprecated. Use Base64.decode64 instead", caller 45: ::Base64.decode64(value) 46: end
# File activesupport/lib/active_support/base64.rb, line 36 36: def self.encode64(value) 37: ActiveSupport::Deprecation.warn "ActiveSupport::Base64.encode64 " \ 38: "is deprecated. Use Base64.encode64 instead", caller 39: ::Base64.encode64(value) 40: end
# File activesupport/lib/active_support/base64.rb, line 48 48: def self.encode64s(value) 49: ActiveSupport::Deprecation.warn "ActiveSupport::Base64.encode64s " \ 50: "is deprecated. Use Base64.strict_encode64 instead", caller 51: ::Base64.strict_encode64(value) 52: end