There boot.rbis a line in the Rails application :
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
There application.rbis another line in:
Bundler.require(:default, Rails.env)
Could you briefly explain what Rails / Bundler does in require 'bundler/setup'and 'Bundler.require'?
Is this a statement that the Bundler is required in bundler/setup, and all the gems of Gemfileare required in Bundler.require?
source
share