module

MIME::QuotedPrintable

Quoted-Printable encoder/decoder following RFC2045

Constants

CHUNK_SIZE = 8192
LINE_LENGTH = 76
SOFT_BREAK = "=\r\n"

Class methods

decode(input : IO, output : IO) : Nil

Decode Quoted-Printable text from input IO to output IO

Source
decode(data : String) : String

Decode Quoted-Printable text

Source
encode(input : IO, output : IO) : Nil

Encode a stream of data from input IO to output IO

Source
encode(data : String) : String

Encode text to Quoted-Printable format

Source