comparison .svn/pristine/ca/cae05f836fa0aba3f92054c65c73c78f356b7faf.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1295:622f24f53b42
1 begin
2 require "rubygems"
3 require "bundler"
4 rescue LoadError
5 $stderr.puts "Redmine requires Bundler. Please install it with `gem install bundler`."
6 exit 1
7 end
8
9 if Gem::Version.new(Bundler::VERSION) < Gem::Version.new("1.0.21")
10 $stderr.puts "Redmine requires Bundler 1.0.21 (you're using #{Bundler::VERSION}).\nPlease install a newer version with `gem install bundler`."
11 exit 1
12 end
13
14 begin
15 ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
16 Bundler.setup
17 rescue Bundler::GemNotFound
18 $stderr.puts "Some gems may need to be installed or updated.\nPlease run `bundle install --without development test`."
19 exit 1
20 end