Last active
June 2, 2023 13:54
-
-
Save alexishida/b7209e02872fc65f5fdefb81e882d4c4 to your computer and use it in GitHub Desktop.
Ruby Security rails rubocop 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
# 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