summaryrefslogtreecommitdiff
path: root/lib/bundler/setup.rb
blob: 3930d1607ce18c97df7fec4ca2f5a921c0f1b522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'bundler/shared_helpers'

if Bundler::SharedHelpers.in_bundle?
  require 'bundler'
  begin
    Bundler.setup
  rescue Bundler::BundlerError => e
    puts "\e[31m#{e.message}\e[0m"
    puts e.backtrace.join("\n") if ENV["DEBUG"]
    exit e.status_code
  end

  # Add bundler to the load path after disabling system gems
  bundler_lib = File.expand_path("../..", __FILE__)
  $LOAD_PATH.unshift(bundler_lib) unless $LOAD_PATH.include?(bundler_lib)
end