summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriejan de Vroom <ariejan@ariejan.net>2011-11-09 14:29:09 +0100
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-11-09 20:50:58 +0200
commit786fe29db4cd884ad0735d7ac2455975aff11ae8 (patch)
tree6b02e61a95553304eb8d6995f005fe9bb52e8313
parentfd7de95bce9bb9b1e728f56d550660b85085f219 (diff)
downloadgitlab-ce-786fe29db4cd884ad0735d7ac2455975aff11ae8.tar.gz
Moved shoulda to the :test group in Gemfile. This prevennts `rake test`
from running after every other rake command.
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index f32c13f070f..806280fdb03 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