aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xci/ci_build.rb4
-rw-r--r--rails.gemspec2
2 files changed, 3 insertions, 3 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index ac0dbb1dc1..a227902032 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -25,7 +25,7 @@ puts "Running command: #{rubygems_install_cmd}"
build_results[:install_rubygems_update] = system rubygems_install_cmd
# Install required version of bundler.
-bundler_install_cmd = "sudo gem install bundler -v 0.9.2 --no-ri --no-rdoc"
+bundler_install_cmd = "sudo gem install bundler -v 0.9.3 --no-ri --no-rdoc"
puts "Running command: #{bundler_install_cmd}"
build_results[:install_bundler] = system bundler_install_cmd
@@ -33,7 +33,7 @@ cd root_dir do
puts
puts "[CruiseControl] Bundling RubyGems"
puts
- build_results[:bundle] = system 'sudo env CI=1 bundle install'
+ build_results[:bundle] = system 'env CI=1 bundle install'
end
cd "#{root_dir}/activesupport" do
diff --git a/rails.gemspec b/rails.gemspec
index 3c293a250f..fa79fee152 100644
--- a/rails.gemspec
+++ b/rails.gemspec
@@ -19,5 +19,5 @@ Gem::Specification.new do |s|
s.add_dependency('activeresource', '= 3.0.0.beta1')
s.add_dependency('actionmailer', '= 3.0.0.beta1')
s.add_dependency('railties', '= 3.0.0.beta1')
- s.add_dependency('bundler', '>= 0.9.2')
+ s.add_dependency('bundler', '>= 0.9.3')
end