From 9e4647544e1554ba72cf032fd0fb3a18ea6e4c26 Mon Sep 17 00:00:00 2001 From: efueger Date: Thu, 13 Apr 2017 13:52:44 -0400 Subject: [PATCH] Create boot2.rb --- first_app/config/boot2.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 first_app/config/boot2.rb diff --git a/first_app/config/boot2.rb b/first_app/config/boot2.rb new file mode 100644 index 0000000..4489e58 --- /dev/null +++ b/first_app/config/boot2.rb @@ -0,0 +1,6 @@ +require 'rubygems' + +# Set up gems listed in the Gemfile. +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) + +require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])