Sha256: 62a6568080e989a4a91f22fb2116d9e68429f1731e8381452a9b038accdbf530

Contents?: true

Size: 573 Bytes

Versions: 23

Compression:

Stored size: 573 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true
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

23 entries across 21 versions & 6 rubygems

Version Path
tdiary-5.0.1 vendor/bundle/gems/mail-2.6.4/lib/mail/encodings/7bit.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/encodings/7bit.rb
mail-2.6.4 lib/mail/encodings/7bit.rb