Mercurial > hg > soundsoftware-site
comparison config/preinitializer.rb @ 1338:25603efa57b5
Merge from live branch
author | Chris Cannam |
---|---|
date | Thu, 20 Jun 2013 13:14:14 +0100 |
parents | 433d4f72a19b |
children |
comparison
equal
deleted
inserted
replaced
1209:1b1138f6f55e | 1338:25603efa57b5 |
---|---|
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 |