mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
CI: sudo unnecessary. Bump bundler dep to 0.9.3.
This commit is contained in:
parent
9f3ea4505a
commit
03b192d1b4
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue