# File lib/DOSFile.rb, line 63 def to_s s="" @contents.each_byte{|b| s+=(b%0x80).chr.tr(0x0D.chr,"\n")} return s.sub(/\0*$/,"") end