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
Gemfile
... ... @@ -37,7 +37,6 @@ end
37 37  
38 38 group :development, :test do
39 39 gem 'rspec-rails'
40   - gem "shoulda", "~> 3.0.0.beta2"
41 40 gem 'capybara'
42 41 gem 'autotest'
43 42 gem 'autotest-rails'
... ... @@ -51,4 +50,5 @@ end
51 50 group :test do
52 51 gem 'turn', :require => false
53 52 gem 'simplecov', :require => false
  53 + gem "shoulda", "~> 3.0.0.beta2"
54 54 end
... ...