Commit 786fe29db4cd884ad0735d7ac2455975aff11ae8

Authored by Ariejan de Vroom
Committed by Dmitriy Zaporozhets
1 parent fd7de95b

Moved shoulda to the :test group in Gemfile. This prevennts `rake test`

from running after every other rake command.
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
@@ -37,7 +37,6 @@ end @@ -37,7 +37,6 @@ end
37 37
38 group :development, :test do 38 group :development, :test do
39 gem 'rspec-rails' 39 gem 'rspec-rails'
40 - gem "shoulda", "~> 3.0.0.beta2"  
41 gem 'capybara' 40 gem 'capybara'
42 gem 'autotest' 41 gem 'autotest'
43 gem 'autotest-rails' 42 gem 'autotest-rails'
@@ -51,4 +50,5 @@ end @@ -51,4 +50,5 @@ end
51 group :test do 50 group :test do
52 gem 'turn', :require => false 51 gem 'turn', :require => false
53 gem 'simplecov', :require => false 52 gem 'simplecov', :require => false
  53 + gem "shoulda", "~> 3.0.0.beta2"
54 end 54 end