- fixes parsing of multiline strings that have content on the first line. Fixes issue #3, added via PR #4 by @mgruner
- added support for windows CRLF line endings. Fixes issue #2
- Note: CRLF support is enabled if the first line ends in a CRLF and reduces performance by about 50%. Performance for files only using \n is not affected. Files not using \r\n in the first line but somewhere else in the file might trigger errors.
- see 1.1.5. Shouldn't be used.
- merged PR#1 from @christopherstat for UTF-8 support of legacy ruby versions
- Made the parser thread-safe
- Made the parser thread-safe
- for line types only parsed once the parser returns a string instead of an array with one string
- added specs
- fixed minor parser errors
- initial release