Created
November 9, 2012 19:43
-
-
Save Jaym3s/4047765 to your computer and use it in GitHub Desktop.
testing-security-with-brakeman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :development do | |
gem 'guard-brakeman' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc 'Run a Brakeman security audit' | |
task :brakeman do | |
system 'brakeman' | |
end | |
task :default => [:rspec, :jasmine, :cucumber, :brakeman] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment