Rakefile in mrjoy-bundler-audit-0.3.6 vs Rakefile in mrjoy-bundler-audit-0.3.7

- old
+ new

@@ -40,20 +40,11 @@ namespace :spec do task :bundle do root = 'spec/bundle' -# Skip this test on any Ruby below 1.9.3. -version = RUBY_VERSION.split(/\./).map(&:to_i) -if((version[0] == 1 && version[1] >= 9 && version[2] >= 3) || (version[0] >= 2)) - chdir(File.join(root,"secure")) do - FileUtils.rm("Gemfile.lock") if(File.exist?("Gemfile.lock")) - sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle install --path ../../../vendor/bundle' - end -end - - %w[unpatched_gems insecure_sources].each do |bundle| + %w[secure unpatched_gems insecure_sources].each do |bundle| chdir(File.join(root,bundle)) do FileUtils.rm("Gemfile.lock") if(File.exist?("Gemfile.lock")) sh 'BUNDLE_BIN_PATH="" BUNDLE_GEMFILE="" RUBYOPT="" bundle install --path ../../../vendor/bundle' end end @@ -65,10 +56,5 @@ task :default => :spec require 'yard' YARD::Rake::YardocTask.new task :doc => :yard - -require './lib/bundler/audit/task' -Bundler::Audit::Task.new do |r| - r.verbose = true -end