Module: ActiveSupport::Base64

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

Class Method Summary (collapse)

Class Method Details

+ (Object) decode64(value)



42
43
44
45
46
# 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

+ (Object) encode64(value)



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

+ (Object) encode64s(value)



48
49
50
51
52
# File 'activesupport/lib/active_support/base64.rb', line 48

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