]> source.dussan.org Git - redmine.git/commitdiff
Gemfile: prevent "rake db:migrate RAILS_ENV=test" causes exception on Ruby 1.9.3...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 31 Jul 2012 02:32:40 +0000 (02:32 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 31 Jul 2012 02:32:40 +0000 (02:32 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10137 e93f8b46-1217-0410-a6f0-8f06a7374b81

Gemfile

diff --git a/Gemfile b/Gemfile
index d3860cb533b071919adea0760d7e06553639b656..4e7ac9d52699d49281e713d69664e496e82ec761 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -74,6 +74,8 @@ end
 
 group :test do
   gem "shoulda", "~> 2.11"
+  # Shoulda does not work nice on Ruby 1.9.3 and seems to need test-unit explicitely.
+  gem "test-unit", :platforms => [:mri_19]
   gem "mocha"
 end