Skip to content

Commit

Permalink
Revert "bundler-audit 0.7.0"
Browse files Browse the repository at this point in the history
This mostly reverts b1d02e7, adding a
>= 0.7.0 to ensure we can use Thor 2 as described in that commit.

Without this commit this generator creates a broken Gemfile because the
0.7.0 no longer exists.
  • Loading branch information
composerinteralia committed Jun 24, 2020
1 parent 56261c4 commit d6b0a3c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/suspenders/generators/advisories_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
module Suspenders
class AdvisoriesGenerator < Generators::Base
def bundler_audit_gem
gem "bundler-audit",
require: false,
group: %i[development test],
git: "https://github.com/rubysec/bundler-audit.git",
branch: "0.7.0"
gem "bundler-audit", ">= 0.7.0", require: false, group: %i[development test]
Bundler.with_clean_env { run "bundle install" }
end

Expand Down

0 comments on commit d6b0a3c

Please sign in to comment.