From 786fe29db4cd884ad0735d7ac2455975aff11ae8 Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Wed, 9 Nov 2011 14:29:09 +0100 Subject: [PATCH] Moved shoulda to the :test group in Gemfile. This prevennts `rake test` from running after every other rake command. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index f32c13f0..806280fd 100644 --- a/Gemfile +++ b/Gemfile @@ -37,7 +37,6 @@ end group :development, :test do gem 'rspec-rails' - gem "shoulda", "~> 3.0.0.beta2" gem 'capybara' gem 'autotest' gem 'autotest-rails' @@ -51,4 +50,5 @@ end group :test do gem 'turn', :require => false gem 'simplecov', :require => false + gem "shoulda", "~> 3.0.0.beta2" end