Sha256: eb38c76889dd1c9a9098814525d4595cdcc3dcbcd94a6dc034b1d3a0ee1719b0

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

# encoding: utf-8
# 
# 
# 
module Mail
  class ContentTransferEncodingField < StructuredField
    
    FIELD_NAME = 'content-transfer-encoding'
    CAPITALIZED_FIELD = 'Content-Transfer-Encoding'
    
    def initialize(value = nil, charset = 'utf-8')
      self.charset = charset
      value = '7bit' if value.to_s =~ /7-?bits?/i
      value = '8bit' if value.to_s =~ /8-?bits?/i
      super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset)
      self.parse
      self
    end
    
    def parse(val = value)
      unless val.blank?
        @element = Mail::ContentTransferEncodingElement.new(val)
      end
    end
    
    def tree
      STDERR.puts("tree is deprecated.  Please use encoding to get parse result\n#{caller}")
      @element ||= Mail::ContentTransferEncodingElement.new(value)
      @tree ||= @element.tree
    end
    
    def element
      @element ||= Mail::ContentTransferEncodingElement.new(value)
    end
    
    def encoding
      element.encoding
    end
    
    # TODO: Fix this up
    def encoded
      "#{CAPITALIZED_FIELD}: #{encoding}\r\n"
    end
    
    def decoded
      encoding
    end
    
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
mail-2.5.5 lib/mail/fields/content_transfer_encoding_field.rb
mail-2.5.5.rc1 lib/mail/fields/content_transfer_encoding_field.rb
challah-1.0.0 vendor/bundle/gems/mail-2.5.4/lib/mail/fields/content_transfer_encoding_field.rb
swipe-rails-0.0.5 vendor/bundle/gems/mail-2.5.4/lib/mail/fields/content_transfer_encoding_field.rb
mail-2.5.4 lib/mail/fields/content_transfer_encoding_field.rb