From e6b5da1ce0722f4e6f7ed86ec61e605cf7a23ee0 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 23 Nov 2012 10:11:35 +0000 Subject: Allow a string/array to be passed to parse_lines --- lib/custodian/parser.rb | 9 +++++++++ 1 file changed, 9 insertions(+) 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 @@ -337,6 +337,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 # -- cgit v1.2.1