Sha256: baea496ad2c2a0fc998fdceea7948a400c5e892f2c32b903bdf159aa628ebb39

Contents?: true

Size: 194 Bytes

Versions: 3

Compression:

Stored size: 194 Bytes

Contents

class String
  # 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

3 entries across 3 versions & 2 rubygems

Version Path
brakeman-7.0.0 bundle/ruby/3.1.0/gems/csv-3.3.2/lib/csv/core_ext/string.rb
csv-3.3.2 lib/csv/core_ext/string.rb
csv-3.3.1 lib/csv/core_ext/string.rb