diff --git a/.travis.yml b/.travis.yml index 8d382e12cbd..1c681386e01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,5 +61,4 @@ install: - bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi" script: - - bundle exec bundle-audit check --update - bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else bundle exec rake qunit:test['200000']; fi" diff --git a/Gemfile b/Gemfile index 607322dca3e..906b0f3aa23 100644 --- a/Gemfile +++ b/Gemfile @@ -140,7 +140,6 @@ group :test, :development do gem 'spork-rails' gem 'pry-nav' gem 'byebug', require: ENV['RM_INFO'].nil? - gem "bundler-audit", require: false end group :development do diff --git a/Gemfile.lock b/Gemfile.lock index 96138bc64e3..b7ad587144e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -68,9 +68,6 @@ GEM bullet (5.4.2) activesupport (>= 3.0.0) uniform_notifier (~> 1.10.0) - bundler-audit (0.5.0) - bundler (~> 1.2) - thor (~> 0.18) byebug (9.0.6) certified (1.0.0) coderay (1.1.1) @@ -405,7 +402,6 @@ DEPENDENCIES binding_of_caller bootsnap bullet - bundler-audit byebug certified discourse-qunit-rails diff --git a/script/docker_test.rb b/script/docker_test.rb index cd9367f3f0d..5b21d82812b 100644 --- a/script/docker_test.rb +++ b/script/docker_test.rb @@ -10,7 +10,6 @@ unless ENV['NO_UPDATE'] checkout = ENV['COMMIT_HASH'] || "HEAD" run_or_fail("git checkout #{checkout}") run_or_fail("bundle") - run_or_fail("bundle-audit check --update") end run_or_fail("bundle exec rake docker:test")