1namespace :brakeman do
 
2  desc "Run brakeman checks and exit with an error code if there are any issues"
 
3  task :check do
 
4    unless system "brakeman -z --no-pager"
 
5      exit 1
 
6    end
 
7  end
 
8end