aboutsummaryrefslogtreecommitdiffstats
path: root/lib/csv/core_ext
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-04-07 16:44:49 -0700
committerJeremy Evans <code@jeremyevans.net>2019-08-30 12:39:31 -0700
commitd08e1004e0ee1286e4513de2a170391a4d0a0116 (patch)
tree5c7dd8244c2bf4c0f9b06725f3585c7ffc710ef3 /lib/csv/core_ext
parent3f67fcd3d5ca5e2907790eb5bb16d03f5884ece8 (diff)
downloadruby-d08e1004e0ee1286e4513de2a170391a4d0a0116.tar.gz
Fix keyword argument separation issues in lib
Mostly requires adding ** in either calls or method definitions.
Diffstat (limited to 'lib/csv/core_ext')
-rw-r--r--lib/csv/core_ext/array.rb2
-rw-r--r--lib/csv/core_ext/string.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/csv/core_ext/array.rb b/lib/csv/core_ext/array.rb
index 94df7d5c35..8beb06b082 100644
--- a/lib/csv/core_ext/array.rb
+++ b/lib/csv/core_ext/array.rb
@@ -4,6 +4,6 @@ class Array # :nodoc:
# ["CSV", "data"].to_csv
# #=> "CSV,data\n"
def to_csv(**options)
- CSV.generate_line(self, options)
+ CSV.generate_line(self, **options)
end
end
diff --git a/lib/csv/core_ext/string.rb b/lib/csv/core_ext/string.rb
index 8f2070f3bd..9b1d31c2a4 100644
--- a/lib/csv/core_ext/string.rb
+++ b/lib/csv/core_ext/string.rb
@@ -4,6 +4,6 @@ class String # :nodoc:
# "CSV,data".parse_csv
# #=> ["CSV", "data"]
def parse_csv(**options)
- CSV.parse_line(self, options)
+ CSV.parse_line(self, **options)
end
end