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 7aeac11 commit d4f5693Copy full SHA for d4f5693
lib/guard/brakeman.rb
@@ -29,8 +29,9 @@ def initialize(watchers = [], options = { })
29
:notifications => true,
30
:run_on_start => false,
31
:chatty => false,
32
- :min_confidence => 1
33
- }.update(options)
+ :min_confidence => 1,
+ :quiet => true
34
+ }.merge!(options)
35
end
36
37
# Gets called once when Guard starts.
@@ -40,6 +41,7 @@ def initialize(watchers = [], options = { })
40
41
def start
42
@scanner_opts = ::Brakeman::set_options({:app_path => '.'}.merge(@options))
43
@options.merge!(@scanner_opts)
44
+ puts @scanner_opts.inspect
45
@tracker = ::Brakeman::Scanner.new(@scanner_opts).process
46
47
if @options[:run_on_start]
0 commit comments