This method is a shortcut for converting a single line of a CSVString into a into an
Array. Note that if line contains
multiple rows, anything beyond the first row is ignored.
The options parameter can be anything CSV::new() understands.
# File lib/csv.rb, line 1394
def self.parse_line(line, options = Hash.new)
new(line, options).shift
end