Sha256: 825ac78b1df07fb0b157d0a28ed1febca69f6f62ef701c84c9bdfada2adb871b

Contents?: true

Size: 202 Bytes

Versions: 14

Compression:

Stored size: 202 Bytes

Contents

class String # :nodoc:
  # Equivalent to CSV::parse_line(self, options)
  #
  #   "CSV,data".parse_csv
  #     #=> ["CSV", "data"]
  def parse_csv(**options)
    CSV.parse_line(self, options)
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
csv-3.1.1 lib/csv/core_ext/string.rb
csv-3.1.0 lib/csv/core_ext/string.rb
csv-3.0.9 lib/csv/core_ext/string.rb
csv-3.0.8 lib/csv/core_ext/string.rb
csv-3.0.7 lib/csv/core_ext/string.rb
csv-3.0.6 lib/csv/core_ext/string.rb
csv-3.0.5 lib/csv/core_ext/string.rb
csv-3.0.4 lib/csv/core_ext/string.rb
csv-3.0.3 lib/csv/core_ext/string.rb
csv-3.0.2 lib/csv/core_ext/string.rb
csv-3.0.1 lib/csv/core_ext/string.rb
csv-3.0.0 lib/csv/core_ext/string.rb
csv-1.0.2 lib/csv/core_ext/string.rb
csv-1.0.1 lib/core_ext/string.rb