Module: TMail::Base64
- Defined in:
- lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb
Class Method Summary collapse
- .decode(str, strict = false) ⇒ Object
- .encode(str) ⇒ Object
- .folding_encode(str, eol = "\n", limit = 60) ⇒ Object
Class Method Details
.decode(str, strict = false) ⇒ Object
40 41 42 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb', line 40 def decode( str, strict = false ) str.unpack('m').first end |
.encode(str) ⇒ Object
36 37 38 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb', line 36 def encode( str ) [str].pack('m').tr( "\r\n", '' ) end |
.folding_encode(str, eol = "\n", limit = 60) ⇒ Object
32 33 34 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb', line 32 def folding_encode( str, eol = "\n", limit = 60 ) [str].pack('m') end |