aboutsummaryrefslogtreecommitdiff
blob: ab6cb374de20fe94b208a1f092cce79a7ef6108e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rubygems'

# Set up gems listed in the Gemfile.
gemfile = File.expand_path('../../Gemfile', __FILE__)
begin
  ENV['BUNDLE_GEMFILE'] = gemfile
  require 'bundler'
  Bundler.setup
rescue Bundler::GemNotFound => e
  STDERR.puts e.message
  STDERR.puts "Try running `bundle install`."
  exit!
end if File.exist?(gemfile)