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
|