module Bootsnap::CompileCache

def self.setup(cache_dir:, iseq:, yaml:)

def self.setup(cache_dir:, iseq:, yaml:)
  if iseq
    Bootsnap::CompileCache::ISeq.install!(cache_dir)
  end
  if yaml
    Bootsnap::CompileCache::YAML.install!(cache_dir)
  end
end