From a10226bc5fcfaac1979d67815732e31cd1041c0d Mon Sep 17 00:00:00 2001 From: John Bintz Date: Mon, 6 Jun 2011 09:49:58 -0400 Subject: [PATCH] clean up testing some more --- Gemfile | 2 +- Rakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index d83c3e8..6f81014 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ source "http://rubygems.org" gemspec gem 'rake', '0.8.7' gem 'fakefs', :require => nil -gem 'guard' +gem 'guard', :git => 'https://github.com/guard/guard.git' gem 'guard-rspec' require 'rbconfig' diff --git a/Rakefile b/Rakefile index b959b61..55bfca0 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,7 @@ namespace :spec do %w{1.8.7 1.9.2 ree}.each do |version| puts "Switching to #{version}" Bundler.with_clean_env do - system %{bash -c 'source ~/.rvm/scripts/rvm && rvm #{version} && bundle && bundle exec rake spec'} + system %{bash -c 'source ~/.rvm/scripts/rvm && rvm #{version} && bundle exec rake spec'} end if $?.exitstatus != 0 fail = true