 dc71b7c8f6
			
		
	
	
		dc71b7c8f6
		
			
		
	
	
	
	
		
			
			- move some things out of `extend` that don't really fit there e.g. `Module`s that are included but not doing any overriding/monkeypatching - move some code into `extend/os` to fix all remaining `rubocop:todo Homebrew/MoveToExtendOS`s - remove some unneeded `bundle` skipper code that doesn't really make sense given our current bottling strategy - extract some `Pathname` extensions to `extend/pathname` for separate files - move a `ENV` `Kernel` extension into `kernel.rb` - `odeprecate` a seemingly unused backwards compatibility method - move `readline_nonblock` from a monkeypatch to a `ReadlineNonblock.read` method as its only used in one place - fix up a link in documentation
		
			
				
	
	
		
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module Cachable
 | |
|   sig { returns(T::Hash[T.untyped, T.untyped]) }
 | |
|   def cache
 | |
|     @cache ||= T.let({}, T.nilable(T::Hash[T.untyped, T.untyped]))
 | |
|   end
 | |
| 
 | |
|   sig { void }
 | |
|   def clear_cache
 | |
|     cache.clear
 | |
|   end
 | |
| end
 |