Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bundler -> 2.0 / run brakeman externally #392

Merged
merged 2 commits into from Apr 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -466,4 +466,4 @@ RUBY VERSION
ruby 2.5.5p157

BUNDLED WITH
1.17.3
2.0.1
9 changes: 1 addition & 8 deletions lib/tasks/brakeman.rake
Expand Up @@ -2,14 +2,7 @@ if Rails.env.development? || Rails.env.test?
namespace :brakeman do
desc 'Run Brakeman'
task :run do
require 'brakeman'

Brakeman.run(
app_path: '.',
quiet: true,
pager: false,
print_report: true
)
system("bundle exec brakeman --quiet --no-pager #{Rails.root}")
end
end
end