Sha256: 0656f92ae4c4c5889679935aac6c7af2d4d6438e52e50b230cbc095639413eaf
Contents?: true
Size: 324 Bytes
Versions: 28
Compression:
Stored size: 324 Bytes
Contents
# encoding: utf-8 module Mail module Encodings class Base64 # Decode the string from Base64 def self.decode(str) RubyVer.decode_base64( str ) end # Encode the string to Base64 def self.encode(str) RubyVer.encode_base64( str ) end end end end
Version data entries
28 entries across 28 versions & 2 rubygems