Methods
Constants
| PARSE_TYPE | = | :CENCODING |
Public Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 791
791: def encoding
792: ensure_parsed
793: @encoding
794: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 796
796: def encoding=( arg )
797: ensure_parsed
798: @encoding = arg
799: end
Private Instance methods
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 815
815: def do_accept( strategy )
816: strategy.meta @encoding.capitalize
817: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 803
803: def init
804: @encoding = nil
805: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 811
811: def isempty?
812: not @encoding
813: end
[ show source ]
# File lib/action_mailer/vendor/tmail/header.rb, line 807
807: def set( s )
808: @encoding = s
809: end