[Source]
# File lib/tmail/header.rb, line 648 def major ensure_parsed @major end
# File lib/tmail/header.rb, line 653 def major=(arg) ensure_parsed @major = arg end
# File lib/tmail/header.rb, line 658 def minor ensure_parsed @minor end
# File lib/tmail/header.rb, line 663 def minor=(arg) ensure_parsed @minor = arg end
# File lib/tmail/header.rb, line 668 def version sprintf('%d.%d', major, minor) end
[Validate]