Sha256: 3f6249393ed89d0868e7735e6c3c6f092dc5c1b15343f16fbcecb9e5da8a3d40
Contents?: true
Size: 566 Bytes
Versions: 239
Compression:
Stored size: 566 Bytes
Contents
# encoding: utf-8 require 'mail/encodings/binary' module Mail module Encodings class EightBit < Binary NAME = '8bit' PRIORITY = 4 # 8bit is an identiy encoding, meaning nothing to do # Decode the string def self.decode(str) str.to_lf end # Encode the string def self.encode(str) str.to_crlf end # Idenity encodings have a fixed cost, 1 byte out per 1 byte in def self.cost(str) 1.0 end Encodings.register(NAME, self) end end end
Version data entries
239 entries across 196 versions & 23 rubygems