We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e6b56c3 + 2566485 commit ef17a87Copy full SHA for ef17a87
lib/cob_web_index.rb
@@ -51,7 +51,7 @@ def self.pull(opts = {})
51
.each do |path|
52
url = "#{base_url}#{path}.json"
53
54
- ingest(opts.merge(ingest_path: url, delete_collection: delete.once))
+ ingest(**opts.merge(ingest_path: url, delete_collection: delete.once))
55
end
56
57
@@ -70,7 +70,7 @@ def self.ingest_fixtures(opts = {})
70
delete = TrueOnce.new
71
72
Dir.glob(fixtures).each do |file|
73
- ingest(opts.merge(ingest_path: file, delete_collection: delete.once))
+ ingest(**opts.merge(ingest_path: file, delete_collection: delete.once))
74
75
76
0 commit comments