Class: Overcommit::Hook::PreCommit::Brakeman
- Defined in:
- lib/overcommit/hook/pre_commit/brakeman.rb
Overview
Runs ‘brakeman` against any modified Ruby/Rails files.
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#applicable_files, #description, #enabled?, #executable, #execute, #in_path?, #initialize, #name, #process_hook_return_value, #quiet?, #required?, #run?, #run_and_transform, #skip?
Constructor Details
This class inherits a constructor from Overcommit::Hook::Base
Instance Method Details
#run ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/overcommit/hook/pre_commit/brakeman.rb', line 4 def run result = execute(%W[#{executable} --exit-on-warn --quiet --summary --only-files] << applicable_files.join(',')) return :pass if result.success? [:fail, result.stdout] end |