Methods
Constants
| PARSE_TYPE | = | :CENCODING |
Public Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 770
770: def encoding
771: ensure_parsed
772: @encoding
773: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 775
775: def encoding=( arg )
776: ensure_parsed
777: @encoding = arg
778: end
Private Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 794
794: def do_accept( strategy )
795: strategy.meta @encoding.capitalize
796: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 782
782: def init
783: @encoding = nil
784: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 790
790: def isempty?
791: not @encoding
792: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 786
786: def set( s )
787: @encoding = s
788: end