diff --git a/email_reply_parser.gemspec b/email_reply_parser.gemspec index f68c432..b883e00 100644 --- a/email_reply_parser.gemspec +++ b/email_reply_parser.gemspec @@ -67,6 +67,8 @@ Gem::Specification.new do |s| Rakefile email_reply_parser.gemspec lib/email_reply_parser.rb + script/release + script/test test/email_reply_parser_test.rb test/emails/correct_sig.txt test/emails/email_1_1.txt @@ -86,6 +88,7 @@ Gem::Specification.new do |s| test/emails/email_one_is_not_on.txt test/emails/email_sent_from_my_not_signature.txt test/emails/email_sig_delimiter_in_middle_of_line.txt + test/emails/greedy_on.txt test/emails/pathological.txt ] # = MANIFEST = diff --git a/lib/email_reply_parser.rb b/lib/email_reply_parser.rb index 3c3013e..982eaec 100644 --- a/lib/email_reply_parser.rb +++ b/lib/email_reply_parser.rb @@ -30,7 +30,7 @@ # # [mail]: https://github.com/mikel/mail class EmailReplyParser - VERSION = "0.5.7" + VERSION = "0.5.8" # Public: Splits an email body into a list of Fragments. #