25 lines
		
	
	
		
			610 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			610 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module OS
 | |
|   module Mac
 | |
|     module SimulateSystem
 | |
|       module ClassMethods
 | |
|         sig { returns(T::Boolean) }
 | |
|         def simulating_or_running_on_macos?
 | |
|           return true if Homebrew::SimulateSystem.os.blank?
 | |
| 
 | |
|           [:macos, *MacOSVersion::SYMBOLS.keys].include?(Homebrew::SimulateSystem.os)
 | |
|         end
 | |
| 
 | |
|         sig { returns(Symbol) }
 | |
|         def current_os
 | |
|           ::Homebrew::SimulateSystem.os || MacOS.version.to_sym
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| Homebrew::SimulateSystem.singleton_class.prepend(OS::Mac::SimulateSystem::ClassMethods)
 | 
