
Set the following files to true in sorbet/files.yaml: - ./compat/extend/nil.rb - ./compat/extend/string.rb - ./compat/formula.rb - ./compat/os/mac.rb
23 lines
245 B
Ruby
23 lines
245 B
Ruby
# typed: true
|
|
|
|
module OS
|
|
module Linux
|
|
include Kernel
|
|
|
|
def which(cmd, path = ENV["PATH"])
|
|
end
|
|
end
|
|
|
|
module Mac
|
|
include Kernel
|
|
end
|
|
end
|
|
|
|
module OS::Mac
|
|
class << self
|
|
module Compat
|
|
include Kernel
|
|
end
|
|
end
|
|
end
|