aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 1a4bba32c1..d44c689582 100644
--- a/Gemfile
+++ b/Gemfile
@@ -21,8 +21,15 @@ gem "erubis", ">= 2.6.5"
gem "RedCloth", ">= 4.2.2"
if ENV['CI']
- gem "fcgi", ">= 0.8.7" if RUBY_VERSION <= '1.9.0'
gem "nokogiri", ">= 1.4.0"
gem "memcache-client", ">= 1.7.6"
gem "pg", ">= 0.8.0"
+
+ # fcgi gem doesn't compile on 1.9
+ # avoid minitest strangeness on 1.9
+ if RUBY_VERSION < '1.9.0'
+ gem "fcgi", ">= 0.8.7"
+ else
+ gem "test-unit", ">= 2.0.5"
+ end
end