diff options
| author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-10 15:28:25 -0800 | 
|---|---|---|
| committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-10 15:28:25 -0800 | 
| commit | aef7e214bd2484cd879d67bb92dda6314e0d6435 (patch) | |
| tree | a11eab8e724ff7715d34def7eb7d953265aade8d | |
| parent | a7dc7cd0c4ceccf0e89056d4429a1cfc84418a74 (diff) | |
| download | rails-aef7e214bd2484cd879d67bb92dda6314e0d6435.tar.gz rails-aef7e214bd2484cd879d67bb92dda6314e0d6435.tar.bz2 rails-aef7e214bd2484cd879d67bb92dda6314e0d6435.zip  | |
Use an env var to expand the CI bundle. Using bundler's 'only' includes this stuff for everybody, oops.
| -rw-r--r-- | Gemfile | 2 | ||||
| -rwxr-xr-x | ci/ci_build.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ gem "rack-test", ">= 0.5.0"  gem "erubis", ">= 2.6.5"  gem "RedCloth", ">= 4.2.2" -only :ci do +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" diff --git a/ci/ci_build.rb b/ci/ci_build.rb index b62cca09a5..453479d605 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -25,7 +25,7 @@ cd root_dir do    puts    puts "[CruiseControl] Bundling RubyGems"    puts -  build_results[:bundle] = system 'rm -rf vendor && gem bundle --update' +  build_results[:bundle] = system 'rm -rf vendor && env CI=1 gem bundle --update'  end  cd "#{root_dir}/activesupport" do  | 
