Method: ActiveSupport::Base64.encode64

Defined in:
activesupport/lib/active_support/base64.rb

.encode64(value) ⇒ Object



36
37
38
39
40
# File 'activesupport/lib/active_support/base64.rb', line 36

def self.encode64(value)
  ActiveSupport::Deprecation.warn "ActiveSupport::Base64.encode64 " \
    "is deprecated. Use Base64.encode64 instead", caller
  ::Base64.encode64(value)
end