Sha256: b549159e34e4c4e68009b4fff4ef8d64c1b9468fea2b9b2e01957ef30dcd66d1
Contents?: true
Size: 543 Bytes
Versions: 241
Compression:
Stored size: 543 Bytes
Contents
# encoding: utf-8 require 'mail/encodings/8bit' module Mail module Encodings class SevenBit < EightBit NAME = '7bit' PRIORITY = 1 # 7bit and 8bit operate the same # Decode the string def self.decode(str) super end # Encode the string def self.encode(str) super end # Idenity encodings have a fixed cost, 1 byte out per 1 byte in def self.cost(str) super end Encodings.register(NAME, self) end end end
Version data entries
241 entries across 198 versions & 23 rubygems