lib/io_streams/tabular/utility/csv_row.rb in iostreams-0.19.0 vs lib/io_streams/tabular/utility/csv_row.rb in iostreams-0.20.0
- old
+ new
@@ -21,10 +21,10 @@
# Parse a single line of CSV data
# Parameters
# line [String]
# A single line of CSV data without any line terminators
def parse(line)
- return if IOStreams.blank?(line)
+ return if IOStreams::Utils.blank?(line)
return if @skip_lines and @skip_lines.match line
in_extended_col = false
csv = Array.new
parts = line.split(@col_sep, -1)