Method: EmailReplyParser::Fragment#finish

Defined in:
lib/email_reply_parser/email_reply_parser.rb

#finishObject

Builds the string content by joining the lines and reversing them.



461
462
463
464
# File 'lib/email_reply_parser/email_reply_parser.rb', line 461

def finish
  @content = @lines.join("\n")
  @lines = @current_block = nil
end