CI: bundle test-unit on 1.9

This commit is contained in:
Jeremy Kemper 2009-11-10 15:46:32 -08:00
parent 6480850d37
commit f14eb686ef
1 changed files with 8 additions and 1 deletions

View File

@ -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