module Bootsnap::LoadPathCache::ChangeObserver::ArrayMixin

def <<(entry)

observer of the change.
(<<, push, unshift, concat), override that method to also notify the
For each method that adds items to one end or another of the array
def <<(entry)
  @lpc_observer.push_paths(self, entry.to_s)
  super
end