Resources

Summary

# Terminal
gem install brakeman
brakeman -o brakeman.html

Open the brakeman.html within your browser for an interactive report

# Terminal
gem install guard guard-brakeman

# Guardfile
guard 'brakeman', run_on_start: true, quiet: true do
  watch(%r{^app/.+\.(erb|haml|rhtml|rb)$})
  watch(%r{^config/.+\.rb$})
  watch(%r{^lib/.+\.rb$})
  watch('Gemfile')
end