 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
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "hardware"
 | |
| require "diagnostic"
 | |
| require "extend/ENV/shared"
 | |
| require "extend/ENV/std"
 | |
| require "extend/ENV/super"
 | |
| 
 | |
| # <!-- vale off -->
 | |
| # @!parse
 | |
| #   # `ENV` is not actually a class, but this makes YARD happy
 | |
| #   # @see https://rubydoc.info/stdlib/core/ENV
 | |
| #   #   <code>ENV</code> core documentation
 | |
| #   # @see Superenv
 | |
| #   # @see Stdenv
 | |
| #   class ENV; end
 | |
| # <!-- vale on -->
 | |
| 
 | |
| module EnvActivation
 | |
|   sig { params(env: T.nilable(String)).void }
 | |
|   def activate_extensions!(env: nil)
 | |
|     if superenv?(env)
 | |
|       extend(Superenv)
 | |
|     else
 | |
|       extend(Stdenv)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   sig {
 | |
|     params(
 | |
|       env:           T.nilable(String),
 | |
|       cc:            T.nilable(String),
 | |
|       build_bottle:  T::Boolean,
 | |
|       bottle_arch:   T.nilable(String),
 | |
|       debug_symbols: T.nilable(T::Boolean),
 | |
|       _block:        T.proc.returns(T.untyped),
 | |
|     ).returns(T.untyped)
 | |
|   }
 | |
|   def with_build_environment(env: nil, cc: nil, build_bottle: false, bottle_arch: nil, debug_symbols: false, &_block)
 | |
|     old_env = to_hash.dup
 | |
|     tmp_env = to_hash.dup.extend(EnvActivation)
 | |
|     T.cast(tmp_env, EnvActivation).activate_extensions!(env:)
 | |
|     T.cast(tmp_env, T.any(Superenv, Stdenv))
 | |
|      .setup_build_environment(cc:, build_bottle:, bottle_arch:,
 | |
|                               debug_symbols:)
 | |
|     replace(tmp_env)
 | |
| 
 | |
|     begin
 | |
|       yield
 | |
|     ensure
 | |
|       replace(old_env)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   sig { params(key: T.any(String, Symbol)).returns(T::Boolean) }
 | |
|   def sensitive?(key)
 | |
|     key.match?(/(cookie|key|token|password|passphrase)/i)
 | |
|   end
 | |
| 
 | |
|   sig { returns(T::Hash[String, String]) }
 | |
|   def sensitive_environment
 | |
|     select { |key, _| sensitive?(key) }
 | |
|   end
 | |
| 
 | |
|   sig { void }
 | |
|   def clear_sensitive_environment!
 | |
|     each_key { |key| delete key if sensitive?(key) }
 | |
|   end
 | |
| end
 | |
| 
 | |
| ENV.extend(EnvActivation)
 |