Class: Homebrew::Bundle::VscodeExtension Private
- Inherits:
-
Extension
- Object
- PackageType
- Extension
- Homebrew::Bundle::VscodeExtension
- Defined in:
- bundle/extensions/vscode_extension.rb
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Constant Summary collapse
- EXTENSION_ID_REGEX =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
/\A[a-z0-9][a-z0-9-]*\.[a-z0-9][a-z0-9._-]*\z/i
Class Method Summary collapse
- .banner_name ⇒ String private
- .check_label ⇒ String private
- .cleanup!(extensions) ⇒ void private
- .cleanup_heading ⇒ String? private
- .cleanup_items(entries) ⇒ Array<String> private
- .extensions ⇒ Array<String> private
- .install!(name, with: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **_options) ⇒ Boolean private
- .install_package!(name, with: nil, verbose: false) ⇒ Boolean private
- .installed_extensions ⇒ Array<String> private
- .installed_packages ⇒ Array<String> private
- .package_installed?(name, with: nil) ⇒ Boolean private
- .package_manager_executable ⇒ Pathname? private
- .package_record(name, with: nil) ⇒ Object private
- .packages ⇒ Array<String> private
- .preinstall!(name, with: nil, no_upgrade: false, verbose: false, **_options) ⇒ Boolean private
- .reset! ⇒ void private
- .type ⇒ Symbol private
Methods inherited from Extension
add_supported?, check, cleanup_disable_description, cleanup_disable_env, cleanup_item_name, cleanup_supported?, disable_predicate_method, dump, dump_disable_description, dump_disable_env, dump_disable_predicate_method, dump_disable_supported?, dump_entry, dump_name, dump_output, dump_supported?, dump_with, entry, #failure_reason, fetchable_name, flag, inherited, install_supported?, install_verb, #installed_and_up_to_date?, legacy_check_step, package_description, package_manager_env, package_manager_executable!, package_manager_installed?, package_manager_name, predicate_method, quote, remove_supported?, switch_description, uninstall_package!, with_package_manager_env
Methods inherited from PackageType
check, #checkable_entries, dump, dump_output, dump_supported?, #exit_early_check, #failure_reason, fetchable_name, #find_actionable, #format_checkable, #full_check, inherited, install_supported?, install_verb, #installed_and_up_to_date?
Class Method Details
.banner_name ⇒ 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.
19 |
# File 'bundle/extensions/vscode_extension.rb', line 19 def = "VSCode (and forks/variants) extensions" |
.check_label ⇒ 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.
16 |
# File 'bundle/extensions/vscode_extension.rb', line 16 def check_label = "VSCode Extension" |
.cleanup!(extensions) ⇒ 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.
181 182 183 184 185 186 187 188 189 190 |
# File 'bundle/extensions/vscode_extension.rb', line 181 def cleanup!(extensions) vscode = package_manager_executable return if vscode.nil? Bundle.exchange_uid_if_needed! do extensions.each do |extension| Kernel.system(vscode.to_s, "--uninstall-extension", extension) end end end |
.cleanup_heading ⇒ 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.
28 29 30 |
# File 'bundle/extensions/vscode_extension.rb', line 28 def cleanup_heading "VSCode extensions" end |
.cleanup_items(entries) ⇒ 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.
169 170 171 172 173 174 175 176 177 178 |
# File 'bundle/extensions/vscode_extension.rb', line 169 def cleanup_items(entries) kept_extensions = entries.filter_map do |entry| entry = T.cast(entry, Dsl::Entry) entry.name.downcase if entry.type == type end return [].freeze if kept_extensions.empty? packages - kept_extensions end |
.extensions ⇒ 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.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'bundle/extensions/vscode_extension.rb', line 48 def extensions extensions = @extensions return extensions if extensions @extensions = if (vscode = package_manager_executable) Bundle.exchange_uid_if_needed! do ENV["WSL_DISTRO_NAME"] = ENV.fetch("HOMEBREW_WSL_DISTRO_NAME", nil) `"#{vscode}" --list-extensions 2>/dev/null` end.split("\n").map(&:strip).grep(EXTENSION_ID_REGEX).map(&:downcase) end return [] if @extensions.nil? @extensions end |
.install!(name, with: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **_options) ⇒ Boolean
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.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'bundle/extensions/vscode_extension.rb', line 146 def install!(name, with: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **) _ = with _ = no_upgrade _ = force return true unless preinstall puts "Installing #{name} VSCode extension. It is not currently installed." if verbose return false unless install_package!(name, verbose:) package = T.cast(package_record(name), String) installed_extensions << package unless installed_extensions.include?(package) if @extensions @extensions << package unless @extensions.include?(package) else @extensions = [package] end true end |
.install_package!(name, with: nil, verbose: false) ⇒ Boolean
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.
125 126 127 128 129 130 131 132 133 |
# File 'bundle/extensions/vscode_extension.rb', line 125 def install_package!(name, with: nil, verbose: false) _ = with vscode = package_manager_executable! Bundle.exchange_uid_if_needed! do Bundle.system(vscode, "--install-extension", name, verbose:) end end |
.installed_extensions ⇒ 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.
74 75 76 77 78 79 |
# File 'bundle/extensions/vscode_extension.rb', line 74 def installed_extensions installed_extensions = @installed_extensions return installed_extensions if installed_extensions @installed_extensions = extensions.dup end |
.installed_packages ⇒ 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.
69 70 71 |
# File 'bundle/extensions/vscode_extension.rb', line 69 def installed_packages installed_extensions end |
.package_installed?(name, with: nil) ⇒ Boolean
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.
82 83 84 85 86 |
# File 'bundle/extensions/vscode_extension.rb', line 82 def package_installed?(name, with: nil) _ = with installed_extensions.include?(name.downcase) end |
.package_manager_executable ⇒ 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.
40 41 42 43 44 45 |
# File 'bundle/extensions/vscode_extension.rb', line 40 def package_manager_executable which("code", ORIGINAL_PATHS) || which("codium", ORIGINAL_PATHS) || which("cursor", ORIGINAL_PATHS) || which("code-insiders", ORIGINAL_PATHS) end |
.package_record(name, with: nil) ⇒ Object
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.
33 34 35 36 37 |
# File 'bundle/extensions/vscode_extension.rb', line 33 def package_record(name, with: nil) _ = with name.downcase end |
.packages ⇒ 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.
64 65 66 |
# File 'bundle/extensions/vscode_extension.rb', line 64 def packages extensions end |
.preinstall!(name, with: nil, no_upgrade: false, verbose: false, **_options) ⇒ Boolean
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.
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'bundle/extensions/vscode_extension.rb', line 97 def preinstall!(name, with: nil, no_upgrade: false, verbose: false, **) _ = with _ = no_upgrade if !package_manager_installed? && Bundle.cask_installed? puts "Installing visual-studio-code. It is not currently installed." if verbose Bundle.system(HOMEBREW_BREW_FILE, "install", "--cask", "visual-studio-code", verbose:) end if package_installed?(name) puts "Skipping install of #{name} VSCode extension. It is already installed." if verbose return false end unless package_manager_installed? raise "Unable to install #{name} VSCode extension. VSCode is not installed." end true end |
.reset! ⇒ 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.
22 23 24 25 |
# File 'bundle/extensions/vscode_extension.rb', line 22 def reset! @extensions = T.let(nil, T.nilable(T::Array[String])) @installed_extensions = T.let(nil, T.nilable(T::Array[String])) end |
.type ⇒ Symbol
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.
13 |
# File 'bundle/extensions/vscode_extension.rb', line 13 def type = :vscode |