summaryrefslogtreecommitdiff
path: root/lib/csv/core_ext/array.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csv/core_ext/array.rb')
-rw-r--r--lib/csv/core_ext/array.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/csv/core_ext/array.rb b/lib/csv/core_ext/array.rb
deleted file mode 100644
index 8beb06b082..0000000000
--- a/lib/csv/core_ext/array.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-class Array # :nodoc:
- # Equivalent to CSV::generate_line(self, options)
- #
- # ["CSV", "data"].to_csv
- # #=> "CSV,data\n"
- def to_csv(**options)
- CSV.generate_line(self, **options)
- end
-end