Skip to content

Commit 95f2168

Browse files
committed
Consistently use double quotes for string literals in CLI report method
1 parent 7e2e5fc commit 95f2168

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/gem_guard/cli.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,12 +326,12 @@ def interactive
326326
end
327327

328328
# 2. Report vulnerabilities
329-
Reporter.new.report(analysis, format: 'table')
329+
Reporter.new.report(analysis, format: "table")
330330

331331
# 3. Ask to fix
332332
prompt = TTY::Prompt.new
333333
if prompt.yes?("\nWould you like to fix these vulnerabilities interactively?")
334-
invoke :fix, [], options.slice('lockfile', 'gemfile', 'config').merge(interactive: true)
334+
invoke :fix, [], options.slice("lockfile", "gemfile", "config").merge(interactive: true)
335335
end
336336
end
337337

0 commit comments

Comments
 (0)