mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
18 lines
310 B
Ruby
18 lines
310 B
Ruby
![]() |
# typed: strict
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
module OS
|
||
|
module Linux
|
||
|
module Bundle
|
||
|
module ClassMethods
|
||
|
sig { returns(T::Boolean) }
|
||
|
def mas_installed?
|
||
|
false
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Homebrew::Bundle.singleton_class.prepend(OS::Linux::Bundle::ClassMethods)
|