module Bootsnap::CompileCache

def self.supported?

def self.supported?
  # only enable on 'ruby' (MRI) and TruffleRuby for POSIX (darwin, linux, *bsd), Windows (RubyInstaller2)
  %w[ruby truffleruby].include?(RUBY_ENGINE) &&
    RUBY_PLATFORM.match?(/darwin|linux|bsd|mswin|mingw|cygwin/)
end