Class: TMail::MimeVersionHeader

Inherits:
StructuredHeader show all
Defined in:
lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb

Constant Summary collapse

PARSE_TYPE =
:MIMEVERSION

Constants inherited from HeaderField

HeaderField::FNAME_TO_CLASS

Constants included from TextUtils

TextUtils::ATOM_UNSAFE, TextUtils::CONTROL_CHAR, TextUtils::MESSAGE_ID, TextUtils::MIME_ENCODED, TextUtils::MONTH, TextUtils::NKF_FLAGS, TextUtils::PHRASE_UNSAFE, TextUtils::RFC2231_ENCODED, TextUtils::TOKEN_UNSAFE, TextUtils::WDAY, TextUtils::ZONESTR_TABLE

Instance Method Summary collapse

Methods inherited from StructuredHeader

#comments

Methods inherited from HeaderField

#accept, #body, #body=, #empty?, #illegal?, #initialize, #inspect, internal_new, new, new_from_port, newobj

Methods included from StrategyInterface

#accept_strategy, create_dest, #decoded, #encoded

Methods included from TextUtils

#atom_safe?, #decode_RFC2231, #decode_params, #join_domain, #message_id?, #mime_encoded?, #quote_atom, #quote_boundary, #quote_phrase, #quote_token, #time2str, #timezone_string_to_unixtime, #to_kcode, #token_safe?, #unquote

Constructor Details

This class inherits a constructor from TMail::HeaderField

Instance Method Details

#majorObject



701
702
703
704
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb', line 701

def major
  ensure_parsed
  @major
end

#major=(arg) ⇒ Object



706
707
708
709
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb', line 706

def major=( arg )
  ensure_parsed
  @major = arg
end

#minorObject



711
712
713
714
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb', line 711

def minor
  ensure_parsed
  @minor
end

#minor=(arg) ⇒ Object



716
717
718
719
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb', line 716

def minor=( arg )
  ensure_parsed
  @minor = arg
end

#versionObject



721
722
723
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb', line 721

def version
  sprintf('%d.%d', major, minor)
end