Skip to content

Instantly share code, notes, and snippets.

@Jaym3s
Created November 9, 2012 19:43
Show Gist options
  • Save Jaym3s/4047765 to your computer and use it in GitHub Desktop.
Save Jaym3s/4047765 to your computer and use it in GitHub Desktop.
testing-security-with-brakeman
group :development do
gem 'guard-brakeman'
end
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