mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Merge csv-1.0.2 from upstream.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dfc56b8c43
commit
5c1941a9be
18 changed files with 1340 additions and 865 deletions
9
lib/csv/core_ext/string.rb
Normal file
9
lib/csv/core_ext/string.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue