brew/Library/Homebrew/load_path.rb
2019-04-19 21:46:20 +09:00

8 lines
217 B
Ruby

require "pathname"
HOMEBREW_LIBRARY_PATH = Pathname(__dir__).realpath.freeze
$LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.to_s) unless $LOAD_PATH.include?(HOMEBREW_LIBRARY_PATH.to_s)
require "vendor/bundle/bundler/setup"