44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "utils/popen"
 | |
| 
 | |
| module Homebrew
 | |
|   # Helper functions for reading and writing settings.
 | |
|   module Settings
 | |
|     sig {
 | |
|       params(setting: T.any(String, Symbol), repo: Pathname)
 | |
|         .returns(T.nilable(String))
 | |
|     }
 | |
|     def self.read(setting, repo: HOMEBREW_REPOSITORY)
 | |
|       return unless (repo/".git/config").exist?
 | |
| 
 | |
|       value = Utils.popen_read("git", "-C", repo.to_s, "config", "--get", "homebrew.#{setting}").chomp
 | |
| 
 | |
|       return if value.strip.empty?
 | |
| 
 | |
|       value
 | |
|     end
 | |
| 
 | |
|     sig { params(setting: T.any(String, Symbol), value: T.any(String, T::Boolean), repo: Pathname).void }
 | |
|     def self.write(setting, value, repo: HOMEBREW_REPOSITORY)
 | |
|       return unless (repo/".git/config").exist?
 | |
| 
 | |
|       value = value.to_s
 | |
| 
 | |
|       return if read(setting, repo:) == value
 | |
| 
 | |
|       Kernel.system("git", "-C", repo.to_s, "config", "--replace-all", "homebrew.#{setting}", value, exception: true)
 | |
|     end
 | |
| 
 | |
|     sig { params(setting: T.any(String, Symbol), repo: Pathname).void }
 | |
|     def self.delete(setting, repo: HOMEBREW_REPOSITORY)
 | |
|       return unless (repo/".git/config").exist?
 | |
| 
 | |
|       return if read(setting, repo:).nil?
 | |
| 
 | |
|       Kernel.system("git", "-C", repo.to_s, "config", "--unset-all", "homebrew.#{setting}", exception: true)
 | |
|     end
 | |
|   end
 | |
| end
 | 
