From 4379ebc811d6b08e14715b57ab5afb22209017d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 9 May 2018 15:45:19 -0300 Subject: [PATCH] Friendlier dev setup Don't force everyone running puma's tests to uninstall every gem matching /puma/ from their system. Whatever problem this was fixing, it seems like the wrong solution for it... :/ --- Rakefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Rakefile b/Rakefile index 4fdd089475..58873a657f 100644 --- a/Rakefile +++ b/Rakefile @@ -73,16 +73,6 @@ else task :test => [:compile] end -task :test => [:ensure_no_puma_gem] -task :ensure_no_puma_gem do - Bundler.with_clean_env do - out = `gem list puma`.strip - if !$?.success? || out != "" - abort "No other puma version should be installed to avoid false positives or loading it by accident but found #{out}" - end - end -end - namespace :test do desc "Run the integration tests" task :integration do