Mercurial > hg > soundsoftware-site
comparison .svn/pristine/ca/cae05f836fa0aba3f92054c65c73c78f356b7faf.svn-base @ 1296:038ba2d95de8 redmine-2.2
Fix redmine-2.2 branch update (add missing svn files)
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:05:06 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1296:038ba2d95de8 |
---|---|
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 |