Commit 1d30877a68291ebd46fd995398394be6e7724141
1 parent
7066444f
Exists in
master
and in
4 other branches
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,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 |