mirror of https://github.com/rails/rails
CI: bundle test-unit on 1.9
This commit is contained in:
parent
6480850d37
commit
f14eb686ef
9
Gemfile
9
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
|
||||
|
|
Loading…
Reference in New Issue