We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5564b6f commit 7b92892Copy full SHA for 7b92892
lib/skunk/cli/options/argv.rb
@@ -26,7 +26,7 @@ def parse # rubocop:disable Metrics/MethodLength
26
end
27
28
opts.on("-o", "--out FILE", "Output report to file") do |filename|
29
- self.output_filename = String(filename)
+ @output_filename = String(filename)
30
31
32
opts.on_tail("-v", "--version", "Show gem's version") do
test/lib/skunk/cli/options/argv_test.rb
@@ -1,3 +1,5 @@
1
+# frozen_string_literal: true
2
+
3
require "test_helper"
4
5
require "skunk/cli/options/argv"
0 commit comments