diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/parser.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/custodian/parser.rb b/lib/custodian/parser.rb index 42eb855..d8b90a1 100644 --- a/lib/custodian/parser.rb +++ b/lib/custodian/parser.rb @@ -338,6 +338,15 @@ module Custodian def parse_lines( text ) # + # If we're given a string then split it on newline + # + if ( text.kind_of?( String ) ) + a = text.split( /[\r\n]/ ) + text = a + end + + + # # Split on newline # text.each do |line| |