2020-10-10 14:16:11 +02:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-02 23:30:07 +02:00
|
|
|
require "pathname"
|
|
|
|
|
2019-04-19 21:46:20 +09:00
|
|
|
HOMEBREW_LIBRARY_PATH = Pathname(__dir__).realpath.freeze
|
2018-09-02 23:30:07 +02:00
|
|
|
|
2020-04-01 10:23:18 +01:00
|
|
|
$LOAD_PATH.push HOMEBREW_LIBRARY_PATH.to_s
|
2018-09-13 15:24:18 +01:00
|
|
|
|
2019-02-21 15:41:42 +00:00
|
|
|
require "vendor/bundle/bundler/setup"
|
2021-02-02 11:50:44 +00:00
|
|
|
require "homebrew_bootsnap"
|
2020-04-01 10:23:18 +01:00
|
|
|
|
2021-02-02 11:50:44 +00:00
|
|
|
unless defined?(Bootsnap)
|
2021-01-21 12:34:04 +00:00
|
|
|
$LOAD_PATH.select! { |d| Pathname(d).directory? }
|
|
|
|
$LOAD_PATH.uniq!
|
|
|
|
end
|