22 lines
411 B
Ruby
Raw Normal View History

2022-11-20 14:27:28 -08:00
# typed: strict
# frozen_string_literal: true
module OS
module Mac
module Sandbox
module ClassMethods
extend T::Helpers
requires_ancestor { T.class_of(::Sandbox) }
sig { returns(T::Boolean) }
def available?
File.executable?(::Sandbox::SANDBOX_EXEC)
end
end
end
2022-11-20 14:27:28 -08:00
end
end
Sandbox.singleton_class.prepend(OS::Mac::Sandbox::ClassMethods)