 2e5272d04c
			
		
	
	
		2e5272d04c
		
	
	
	
	
		
			
			Do the usual "disable deprecations" and "uncomment pending deprecations" dance and delete/deprecate/disable relevant/related code.
		
			
				
	
	
		
			24 lines
		
	
	
		
			478 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			478 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module OS
 | |
|   module Mac
 | |
|     class << self
 | |
|       module Compat
 | |
|         def preferred_arch
 | |
|           odisabled "MacOS.preferred_arch", "Hardware::CPU.arch (or ideally let the compiler handle it)"
 | |
|         end
 | |
| 
 | |
|         def tcc_db
 | |
|           odisabled "MacOS.tcc_db"
 | |
|         end
 | |
| 
 | |
|         def pre_mavericks_accessibility_dotfile
 | |
|           odisabled "MacOS.pre_mavericks_accessibility_dotfile"
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       prepend Compat
 | |
|     end
 | |
|   end
 | |
| end
 |