Skip to content

Instantly share code, notes, and snippets.

@alexishida
Last active June 2, 2023 13:54
Show Gist options
  • Save alexishida/b7209e02872fc65f5fdefb81e882d4c4 to your computer and use it in GitHub Desktop.
Save alexishida/b7209e02872fc65f5fdefb81e882d4c4 to your computer and use it in GitHub Desktop.
Ruby Security rails rubocop brakeman
# Commands
gem install bundler-audit
bundle audit check --update
gem install brakeman
brakeman
gem install rubycritic
rubycritic
# Rubysec
gem install bundler-audit
bundle audit check --update
bundle audit
bundle audit update
# Brakeman
group :development do
gem 'brakeman'
end
brakeman
# Rubycritc
gem install rubycritic
group :development do
gem "rubycritic", require: false
end
rubycritic
# Block
gem 'rubycritic'
gem 'bundler-audit'
gem 'brakeman'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment