class method
self.decode64
Ruby on Rails 3.2.22.5
Since v2.2.3 Last seen in v3.2.22.5Signature
self.decode64(value)
No documentation comment.
Parameters
-
valuereq
Source
# File activesupport/lib/active_support/base64.rb, line 42
def self.decode64(value)
ActiveSupport::Deprecation.warn "ActiveSupport::Base64.decode64 " \
"is deprecated. Use Base64.decode64 instead", caller
::Base64.decode64(value)
end
Defined in activesupport/lib/active_support/base64.rb line 42
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Base64