mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
22 lines
411 B
Ruby
22 lines
411 B
Ruby
# 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
|
|
end
|
|
end
|
|
|
|
Sandbox.singleton_class.prepend(OS::Mac::Sandbox::ClassMethods)
|