Class: Cask::Config
- Defined in:
- cask/config.rb,
sorbet/rbi/dsl/cask/config.rbi
Overview
This class is part of an internal API. This class may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Configuration for installing casks.
Constant Summary collapse
- ConfigHash =
This constant is part of an internal API. This constant may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.type_alias { T::Hash[Symbol, T.any(LazyObject, String, Pathname, T::Array[String])] }
- DEFAULT_DIRS =
This constant is part of an internal API. This constant may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.let( { appdir: "/Applications", keyboard_layoutdir: "/Library/Keyboard Layouts", colorpickerdir: "~/Library/ColorPickers", prefpanedir: "~/Library/PreferencePanes", qlplugindir: "~/Library/QuickLook", mdimporterdir: "~/Library/Spotlight", dictionarydir: "~/Library/Dictionaries", fontdir: "~/Library/Fonts", servicedir: "~/Library/Services", input_methoddir: "~/Library/Input Methods", internet_plugindir: "~/Library/Internet Plug-Ins", audio_unit_plugindir: "~/Library/Audio/Plug-Ins/Components", vst_plugindir: "~/Library/Audio/Plug-Ins/VST", vst3_plugindir: "~/Library/Audio/Plug-Ins/VST3", screen_saverdir: "~/Library/Screen Savers", }.freeze, T::Hash[Symbol, String], )
Instance Attribute Summary collapse
-
#explicit ⇒ ConfigHash
internal
Get the explicit configuration.
Class Method Summary collapse
- .canonicalize(config) ⇒ ConfigHash private
-
.defaults ⇒ Hash{Symbol => LazyObject, String}
private
runtime recursive evaluation forces the LazyObject to be evaluated.
- .from_args(args) ⇒ T.attached_class private
- .from_json(json, ignore_invalid_keys: false) ⇒ T.attached_class private
Instance Method Summary collapse
- #appdir ⇒ String private
- #audio_unit_plugindir ⇒ String private
- #bash_completion ⇒ Pathname private
- #binarydir ⇒ Pathname private
- #colorpickerdir ⇒ String private
- #default ⇒ ConfigHash private
- #dictionarydir ⇒ String private
- #env ⇒ ConfigHash private
- #fish_completion ⇒ Pathname private
- #fontdir ⇒ String private
- #initialize(default: nil, env: nil, explicit: {}, ignore_invalid_keys: false) ⇒ void constructor private
- #input_methoddir ⇒ String private
- #internet_plugindir ⇒ String private
- #keyboard_layoutdir ⇒ String private
- #languages ⇒ Array<String> private
- #languages=(languages) ⇒ void private
- #manpagedir ⇒ Pathname private
- #mdimporterdir ⇒ String private
- #merge(other) ⇒ T.self_type private
- #prefpanedir ⇒ String private
- #qlplugindir ⇒ String private
- #screen_saverdir ⇒ String private
- #servicedir ⇒ String private
- #to_json(*options) ⇒ String private
- #vst3_plugindir ⇒ String private
- #vst_plugindir ⇒ String private
- #zsh_completion ⇒ Pathname private
Constructor Details
#initialize(default: nil, env: nil, explicit: {}, ignore_invalid_keys: false) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'cask/config.rb', line 109 def initialize(default: nil, env: nil, explicit: {}, ignore_invalid_keys: false) if default @default = T.let( self.class.canonicalize(self.class.defaults.merge(default)), T.nilable(ConfigHash), ) end if env @env = T.let( self.class.canonicalize(env), T.nilable(ConfigHash), ) end @explicit = T.let( self.class.canonicalize(explicit), ConfigHash, ) if ignore_invalid_keys @env&.delete_if { |key, _| self.class.defaults.keys.exclude?(key) } @explicit.delete_if { |key, _| self.class.defaults.keys.exclude?(key) } return end @env&.assert_valid_keys(*self.class.defaults.keys) @explicit.assert_valid_keys(*self.class.defaults.keys) end |
Instance Attribute Details
#explicit ⇒ ConfigHash
This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
Get the explicit configuration.
99 100 101 |
# File 'cask/config.rb', line 99 def explicit @explicit end |
Class Method Details
.canonicalize(config) ⇒ ConfigHash
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
83 84 85 86 87 88 89 90 91 92 93 |
# File 'cask/config.rb', line 83 def self.canonicalize(config) config.to_h do |k, v| if DEFAULT_DIRS.key?(k) raise TypeError, "Invalid path for default dir #{k}: #{v.inspect}" if v.is_a?(Array) [k, Pathname(v.to_s).] else [k, v] end end end |
.defaults ⇒ Hash{Symbol => LazyObject, String}
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
runtime recursive evaluation forces the LazyObject to be evaluated
39 40 41 42 43 |
# File 'cask/config.rb', line 39 def self.defaults { languages: LazyObject.new { ::OS::Mac.languages }, }.merge(DEFAULT_DIRS).freeze end |
.from_args(args) ⇒ T.attached_class
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'cask/config.rb', line 46 def self.from_args(args) # FIXME: T.unsafe is a workaround for methods that are only defined when `cask_options` # is invoked on the parser. (These could be captured by a DSL compiler instead.) args = T.unsafe(args) new(explicit: { appdir: args.appdir, keyboard_layoutdir: args.keyboard_layoutdir, colorpickerdir: args.colorpickerdir, prefpanedir: args.prefpanedir, qlplugindir: args.qlplugindir, mdimporterdir: args.mdimporterdir, dictionarydir: args.dictionarydir, fontdir: args.fontdir, servicedir: args.servicedir, input_methoddir: args.input_methoddir, internet_plugindir: args.internet_plugindir, audio_unit_plugindir: args.audio_unit_plugindir, vst_plugindir: args.vst_plugindir, vst3_plugindir: args.vst3_plugindir, screen_saverdir: args.screen_saverdir, languages: args.language, }.compact) end |
.from_json(json, ignore_invalid_keys: false) ⇒ T.attached_class
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
71 72 73 74 75 76 77 78 79 80 |
# File 'cask/config.rb', line 71 def self.from_json(json, ignore_invalid_keys: false) config = JSON.parse(json, symbolize_names: true) new( default: config.fetch(:default, {}), env: config.fetch(:env, {}), explicit: config.fetch(:explicit, {}), ignore_invalid_keys:, ) end |
Instance Method Details
#appdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
11 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 11 def appdir; end |
#audio_unit_plugindir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
14 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 14 def audio_unit_plugindir; end |
#bash_completion ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
172 173 174 |
# File 'cask/config.rb', line 172 def bash_completion @bash_completion ||= T.let(HOMEBREW_PREFIX/"etc/bash_completion.d", T.nilable(Pathname)) end |
#binarydir ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
162 163 164 |
# File 'cask/config.rb', line 162 def binarydir @binarydir ||= T.let(HOMEBREW_PREFIX/"bin", T.nilable(Pathname)) end |
#colorpickerdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
17 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 17 def colorpickerdir; end |
#default ⇒ ConfigHash
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
138 139 140 |
# File 'cask/config.rb', line 138 def default @default ||= self.class.canonicalize(self.class.defaults) end |
#dictionarydir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
20 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 20 def dictionarydir; end |
#env ⇒ ConfigHash
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'cask/config.rb', line 143 def env @env ||= self.class.canonicalize( Homebrew::EnvConfig.cask_opts .select { |arg| arg.include?("=") } .map { |arg| T.cast(arg.split("=", 2), [String, String]) } .to_h do |(flag, value)| key = flag.sub(/^--/, "") # converts --language flag to :languages config key if key == "language" key = "languages" value = value.split(",") end [key.to_sym, value] end, ) end |
#fish_completion ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
182 183 184 |
# File 'cask/config.rb', line 182 def fish_completion @fish_completion ||= T.let(HOMEBREW_PREFIX/"share/fish/vendor_completions.d", T.nilable(Pathname)) end |
#fontdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
23 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 23 def fontdir; end |
#input_methoddir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
26 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 26 def input_methoddir; end |
#internet_plugindir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
29 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 29 def internet_plugindir; end |
#keyboard_layoutdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
32 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 32 def keyboard_layoutdir; end |
#languages ⇒ Array<String>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'cask/config.rb', line 187 def languages [ *explicit.fetch(:languages, []), *env.fetch(:languages, []), *default.fetch(:languages, []), ].uniq.select do |lang| # Ensure all languages are valid. Locale.parse(lang) true rescue Locale::ParserError false end end |
#languages=(languages) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
202 203 204 |
# File 'cask/config.rb', line 202 def languages=(languages) explicit[:languages] = languages end |
#manpagedir ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
167 168 169 |
# File 'cask/config.rb', line 167 def manpagedir @manpagedir ||= T.let(HOMEBREW_PREFIX/"share/man", T.nilable(Pathname)) end |
#mdimporterdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
38 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 38 def mdimporterdir; end |
#merge(other) ⇒ T.self_type
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
219 220 221 |
# File 'cask/config.rb', line 219 def merge(other) self.class.new(explicit: other.explicit.merge(explicit)) end |
#prefpanedir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
41 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 41 def prefpanedir; end |
#qlplugindir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
44 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 44 def qlplugindir; end |
#screen_saverdir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
47 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 47 def screen_saverdir; end |
#servicedir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
50 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 50 def servicedir; end |
#to_json(*options) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
224 225 226 227 228 229 230 |
# File 'cask/config.rb', line 224 def to_json(*) { default:, env:, explicit:, }.to_json(*) end |
#vst3_plugindir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
53 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 53 def vst3_plugindir; end |
#vst_plugindir ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
56 |
# File 'sorbet/rbi/dsl/cask/config.rbi', line 56 def vst_plugindir; end |
#zsh_completion ⇒ Pathname
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
177 178 179 |
# File 'cask/config.rb', line 177 def zsh_completion @zsh_completion ||= T.let(HOMEBREW_PREFIX/"share/zsh/site-functions", T.nilable(Pathname)) end |