From 359ae379d3e1d30fad047f2453406127df5da668 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:36:08 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/Homebrew.html | 140 ++--- docs/Homebrew/Cleanup.html | 2 +- docs/Homebrew/Diagnostic/Checks.html | 372 ++++++------- docs/SystemConfig.html | 285 ++++------ docs/method_list.html | 756 +++++++++++++-------------- 5 files changed, 659 insertions(+), 896 deletions(-) diff --git a/docs/Homebrew.html b/docs/Homebrew.html index 4c7b2f76c..a1cda9034 100644 --- a/docs/Homebrew.html +++ b/docs/Homebrew.html @@ -21359,30 +21359,16 @@

 
 
-215
-216
-217
-218
-219
-220
-221
-222
-223
-224
-225
+207 +208 +209 +210 -
# File 'utils/gems.rb', line 215
+      
# File 'utils/gems.rb', line 207
 
 def forget_user_gem_groups!
-  if GEM_GROUPS_FILE.exist?
-    GEM_GROUPS_FILE.truncate(0)
-  elsif RUBY_VERSION < "2.7"
-    # Backwards compatibility. This else block can be removed by the end of 2023.
-    # We will not support this in Ruby >=2.7.
-    require "settings"
-    Homebrew::Settings.delete(:gemgroups)
-  end
+  GEM_GROUPS_FILE.truncate(0) if GEM_GROUPS_FILE.exist?
   @user_gem_groups = []
 end
@@ -25706,6 +25692,21 @@

 
 
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
 235
 236
 237
@@ -25818,34 +25819,10 @@ 

344 345 346 -347 -348 -349 -350 -351 -352 -353 -354 -355 -356 -357 -358 -359 -360 -361 -362 -363 -364 -365 -366 -367 -368 -369 -370 -371

+347

-
# File 'utils/gems.rb', line 235
+      
# File 'utils/gems.rb', line 220
 
 def install_bundler_gems!(only_warn_on_failure: false, setup_path: true, groups: [])
   old_path = ENV.fetch("PATH", nil)
@@ -25854,7 +25831,6 @@ 

old_bundle_gemfile = ENV.fetch("BUNDLE_GEMFILE", nil) old_bundle_with = ENV.fetch("BUNDLE_WITH", nil) old_bundle_frozen = ENV.fetch("BUNDLE_FROZEN", nil) - old_sdkroot = ENV.fetch("SDKROOT", nil) invalid_groups = groups - valid_gem_groups raise ArgumentError, "Invalid gem groups: #{invalid_groups.join(", ")}" unless invalid_groups.empty? @@ -25882,13 +25858,6 @@

ENV["BUNDLE_WITH"] = groups.join(" ") ENV["BUNDLE_FROZEN"] = "true" - # System Ruby does not pick up the correct SDK by default. - if ENV["HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH"] - macos_major = ENV.fetch("HOMEBREW_MACOS_VERSION").partition(".").first - sdkroot = "/Library/Developer/CommandLineTools/SDKs/MacOSX#{macos_major}.sdk" - ENV["SDKROOT"] = sdkroot if Dir.exist?(sdkroot) - end - if @bundle_installed_groups != groups bundle = File.join(find_in_path("bundle"), "bundle") bundle_check_output = `#{bundle} check 2>&1` @@ -25982,7 +25951,6 @@

ENV["BUNDLE_WITH"] = old_bundle_with ENV["BUNDLE_FROZEN"] = old_bundle_frozen end - ENV["SDKROOT"] = old_sdkroot end

@@ -45257,15 +45225,7 @@

180 181 182 -183 -184 -185 -186 -187 -188 -189 -190 -191

+183
# File 'utils/gems.rb', line 177
@@ -45273,14 +45233,6 @@ 

def user_gem_groups @user_gem_groups ||= if GEM_GROUPS_FILE.exist? GEM_GROUPS_FILE.readlines(chomp: true) - elsif RUBY_VERSION < "2.7" - # Backwards compatibility. This elsif block removed by the end of 2023. - # We will not support this in Ruby >=2.7. - require "settings" - groups = Homebrew::Settings.read(:gemgroups)&.split(";") || [] - write_user_gem_groups(groups) - Homebrew::Settings.delete(:gemgroups) - groups else [] end @@ -45305,16 +45257,16 @@

 
 
-227
-228
-229
-230
-231
-232
-233
+212 +213 +214 +215 +216 +217 +218

-
# File 'utils/gems.rb', line 227
+      
# File 'utils/gems.rb', line 212
 
 def user_vendor_version
   @user_vendor_version ||= if VENDOR_VERSION_FILE.exist?
@@ -45688,10 +45640,7 @@ 

87 88 89 -90 -91 -92 -93

+90
# File 'dev-cmd/vendor-gems.rb', line 29
@@ -45703,9 +45652,6 @@ 

ENV["BUNDLE_WITH"] = Homebrew.valid_gem_groups.join(":") - # System Ruby does not pick up the correct SDK by default. - ENV["SDKROOT"] = MacOS.sdk_path if ENV["HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH"] - ohai "cd #{HOMEBREW_LIBRARY_PATH}" HOMEBREW_LIBRARY_PATH.cd do if args.update @@ -46172,6 +46118,14 @@

 
 
+185
+186
+187
+188
+189
+190
+191
+192
 193
 194
 195
@@ -46184,18 +46138,10 @@ 

202 203 204 -205 -206 -207 -208 -209 -210 -211 -212 -213

+205

-
# File 'utils/gems.rb', line 193
+      
# File 'utils/gems.rb', line 185
 
 def write_user_gem_groups(groups)
   return if @user_gem_groups == groups && GEM_GROUPS_FILE.exist?
diff --git a/docs/Homebrew/Cleanup.html b/docs/Homebrew/Cleanup.html
index 93c66ee32..1e016eca9 100644
--- a/docs/Homebrew/Cleanup.html
+++ b/docs/Homebrew/Cleanup.html
@@ -3682,7 +3682,7 @@ 

def use_system_ruby? return false if Homebrew::EnvConfig.force_vendor_ruby? - ENV["HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH"].present? + Homebrew::EnvConfig.developer? && ENV["HOMEBREW_USE_RUBY_FROM_PATH"].present? end

diff --git a/docs/Homebrew/Diagnostic/Checks.html b/docs/Homebrew/Diagnostic/Checks.html index 0cccec760..e21f4dc1c 100644 --- a/docs/Homebrew/Diagnostic/Checks.html +++ b/docs/Homebrew/Diagnostic/Checks.html @@ -1652,28 +1652,6 @@

private -
-
- - - - - -
  • - - - #check_ruby_version ⇒ Object - - - - - - - - - - -
    @@ -2855,6 +2833,19 @@

     
     
    +429
    +430
    +431
    +432
    +433
    +434
    +435
    +436
    +437
    +438
    +439
    +440
    +441
     442
     443
     444
    @@ -2871,23 +2862,10 @@ 

    455 456 457 -458 -459 -460 -461 -462 -463 -464 -465 -466 -467 -468 -469 -470 -471

    +458

  • -
    # File 'extend/os/mac/diagnostic.rb', line 442
    +      
    # File 'extend/os/mac/diagnostic.rb', line 429
     
     def check_broken_sdks
       locator = MacOS.sdk_locator
    @@ -3822,20 +3800,20 @@ 

     
     
    -400
    -401
    -402
    -403
    -404
    -405
    -406
    -407
    -408
    -409
    -410
    +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397

    -
    # File 'extend/os/mac/diagnostic.rb', line 400
    +      
    # File 'extend/os/mac/diagnostic.rb', line 387
     
     def check_deprecated_caskroom_taps
       tapped_caskroom_taps = Tap.select { |t| t.user == "caskroom" || t.name == "phinze/cask" }
    @@ -4063,6 +4041,19 @@ 

     
     
    +256
    +257
    +258
    +259
    +260
    +261
    +262
    +263
    +264
    +265
    +266
    +267
    +268
     269
     270
     271
    @@ -4081,23 +4072,10 @@ 

    284 285 286 -287 -288 -289 -290 -291 -292 -293 -294 -295 -296 -297 -298 -299 -300

    +287

    -
    # File 'extend/os/mac/diagnostic.rb', line 269
    +      
    # File 'extend/os/mac/diagnostic.rb', line 256
     
     def check_filesystem_case_sensitive
       dirs_to_check = [
    @@ -4313,6 +4291,19 @@ 

     
     
    +289
    +290
    +291
    +292
    +293
    +294
    +295
    +296
    +297
    +298
    +299
    +300
    +301
     302
     303
     304
    @@ -4333,23 +4324,10 @@ 

    319 320 321 -322 -323 -324 -325 -326 -327 -328 -329 -330 -331 -332 -333 -334 -335

    +322

    -
    # File 'extend/os/mac/diagnostic.rb', line 302
    +      
    # File 'extend/os/mac/diagnostic.rb', line 289
     
     def check_for_gettext
       find_relative_paths("lib/libgettextlib.dylib",
    @@ -4464,6 +4442,19 @@ 

     
     
    +324
    +325
    +326
    +327
    +328
    +329
    +330
    +331
    +332
    +333
    +334
    +335
    +336
     337
     338
     339
    @@ -4479,23 +4470,10 @@ 

    349 350 351 -352 -353 -354 -355 -356 -357 -358 -359 -360 -361 -362 -363 -364 -365

    +352

    -
    # File 'extend/os/mac/diagnostic.rb', line 337
    +      
    # File 'extend/os/mac/diagnostic.rb', line 324
     
     def check_for_iconv
       find_relative_paths("lib/libiconv.dylib", "include/iconv.h")
    @@ -4601,6 +4579,19 @@ 

     
     
    +354
    +355
    +356
    +357
    +358
    +359
    +360
    +361
    +362
    +363
    +364
    +365
    +366
     367
     368
     369
    @@ -4619,23 +4610,10 @@ 

    382 383 384 -385 -386 -387 -388 -389 -390 -391 -392 -393 -394 -395 -396 -397 -398

    +385

    -
    # File 'extend/os/mac/diagnostic.rb', line 367
    +      
    # File 'extend/os/mac/diagnostic.rb', line 354
     
     def check_for_multiple_volumes
       return unless HOMEBREW_CELLAR.exist?
    @@ -6342,6 +6320,19 @@ 

     
     
    +399
    +400
    +401
    +402
    +403
    +404
    +405
    +406
    +407
    +408
    +409
    +410
    +411
     412
     413
     414
    @@ -6354,23 +6345,10 @@ 

    421 422 423 -424 -425 -426 -427 -428 -429 -430 -431 -432 -433 -434 -435 -436 -437

    +424

    -
    # File 'extend/os/mac/diagnostic.rb', line 412
    +      
    # File 'extend/os/mac/diagnostic.rb', line 399
     
     def check_if_supported_sdk_available
       return unless DevelopmentTools.installed?
    @@ -6709,54 +6687,6 @@ 

    - - -
    -

    - - #check_ruby_versionObject - - - - - -

    - - - - -
    -
    -
    -
    -207
    -208
    -209
    -210
    -211
    -212
    -213
    -214
    -215
    -216
    -217
    -218
    -
    -
    # File 'extend/os/mac/diagnostic.rb', line 207
    -
    -def check_ruby_version
    -  return unless ENV["HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH"]
    -  return if RUBY_VERSION == HOMEBREW_REQUIRED_RUBY_VERSION
    -  return if Homebrew::EnvConfig.developer? && OS::Mac.version.prerelease?
    -
    -  <<~EOS
    -    Ruby version #{RUBY_VERSION} is unsupported on macOS #{MacOS.version}. Homebrew
    -    is developed and tested on Ruby #{HOMEBREW_REQUIRED_RUBY_VERSION}, and may not work correctly
    -    on other Rubies. Patches are accepted as long as they don't cause breakage
    -    on supported Rubies.
    -  EOS
    -end
    -
    @@ -7369,21 +7299,21 @@

     
     
    -256
    -257
    -258
    -259
    -260
    -261
    -262
    -263
    -264
    -265
    -266
    -267
    +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254

    -
    # File 'extend/os/mac/diagnostic.rb', line 256
    +      
    # File 'extend/os/mac/diagnostic.rb', line 243
     
     def check_xcode_license_approved
       # If the user installs Xcode-only, they have to approve the
    @@ -7465,19 +7395,19 @@ 

     
     
    -220
    -221
    -222
    -223
    -224
    -225
    -226
    -227
    -228
    -229
    +207 +208 +209 +210 +211 +212 +213 +214 +215 +216

    -
    # File 'extend/os/mac/diagnostic.rb', line 220
    +      
    # File 'extend/os/mac/diagnostic.rb', line 207
     
     def check_xcode_prefix
       prefix = MacOS::Xcode.prefix
    @@ -7509,19 +7439,19 @@ 

     
     
    -231
    -232
    -233
    -234
    -235
    -236
    -237
    -238
    -239
    -240
    +218 +219 +220 +221 +222 +223 +224 +225 +226 +227

    -
    # File 'extend/os/mac/diagnostic.rb', line 231
    +      
    # File 'extend/os/mac/diagnostic.rb', line 218
     
     def check_xcode_prefix_exists
       prefix = MacOS::Xcode.prefix
    @@ -7553,22 +7483,22 @@ 

     
     
    -242
    -243
    -244
    -245
    -246
    -247
    -248
    -249
    -250
    -251
    -252
    -253
    -254
    +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241

    -
    # File 'extend/os/mac/diagnostic.rb', line 242
    +      
    # File 'extend/os/mac/diagnostic.rb', line 229
     
     def check_xcode_select_path
       return if MacOS::CLT.installed?
    diff --git a/docs/SystemConfig.html b/docs/SystemConfig.html
    index d798d2800..f7c7c6023 100644
    --- a/docs/SystemConfig.html
    +++ b/docs/SystemConfig.html
    @@ -397,28 +397,6 @@ 

    - - -
    -
    - - - - - -
  • - - - .describe_homebrew_ruby_version ⇒ String - - - - - - - - - private
    @@ -922,12 +900,12 @@

     
     
    -37
    -38
    -39
    +28 +29 +30

  • -
    # File 'extend/os/mac/system_config.rb', line 37
    +      
    # File 'extend/os/mac/system_config.rb', line 28
     
     def clt
       @clt ||= MacOS::CLT.version if MacOS::CLT.installed?
    @@ -1025,23 +1003,23 @@ 

     
     
    +131
    +132
    +133
    +134
    +135
    +136
    +137
    +138
    +139
    +140
     141
     142
     143
    -144
    -145
    -146
    -147
    -148
    -149
    -150
    -151
    -152
    -153
    -154
    +144

    -
    # File 'system_config.rb', line 141
    +      
    # File 'system_config.rb', line 131
     
     def core_tap_config(out = $stdout)
       if CoreTap.instance.installed?
    @@ -1274,15 +1252,15 @@ 

     
     
    -22
    -23
    -24
    -25
    -26
    -27
    +13 +14 +15 +16 +17 +18

    -
    # File 'extend/os/mac/system_config.rb', line 22
    +      
    # File 'extend/os/mac/system_config.rb', line 13
     
     def describe_clang
       return "N/A" if clang.null?
    @@ -1338,19 +1316,19 @@ 

     
     
    -130
    -131
    -132
    -133
    -134
    -135
    -136
    -137
    -138
    -139
    +120 +121 +122 +123 +124 +125 +126 +127 +128 +129

    -
    # File 'system_config.rb', line 130
    +      
    # File 'system_config.rb', line 120
     
     def describe_curl
       out, = system_command(Utils::Curl.curl_executable, args: ["--version"], verbose: false)
    @@ -1410,14 +1388,14 @@ 

     
     
    -123
    -124
    -125
    -126
    -127
    +113 +114 +115 +116 +117

    -
    # File 'system_config.rb', line 123
    +      
    # File 'system_config.rb', line 113
     
     def describe_git
       return "N/A" unless Utils::Git.available?
    @@ -1438,71 +1416,6 @@ 

    -

    -
    - - - -
    -
    -
    - -

    Returns:

    -
      - -
    • - - - (String) - - - -
    • - -
    - -
    - - - - -
    -
    -
    -
    -12
    -13
    -14
    -15
    -16
    -17
    -18
    -19
    -20
    -
    -
    # File 'extend/os/mac/system_config.rb', line 12
    -
    -def describe_homebrew_ruby
    -  s = describe_homebrew_ruby_version
    -
    -  if RUBY_PATH.to_s.match?(%r{^/System/Library/Frameworks/Ruby\.framework/Versions/[12]\.[089]/usr/bin/ruby})
    -    s
    -  else
    -    "#{s} => #{RUBY_PATH}"
    -  end
    -end
    -
    - - -
    -

    - - .describe_homebrew_ruby_versionString - - - - -

    @@ -1539,23 +1452,13 @@

    96 97 -98 -99 -100 -101 -102 -103

    +98
    # File 'system_config.rb', line 96
     
    -def describe_homebrew_ruby_version
    -  case RUBY_VERSION
    -  when /^1\.[89]/, /^2\.0/
    -    "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
    -  else
    -    RUBY_VERSION
    -  end
    +def describe_homebrew_ruby
    +  "#{RUBY_VERSION} => #{RUBY_PATH}"
     end
    @@ -1655,16 +1558,16 @@

     
     
    -41
    -42
    -43
    -44
    -45
    -46
    -47
    +32 +33 +34 +35 +36 +37 +38

    -
    # File 'extend/os/mac/system_config.rb', line 41
    +      
    # File 'extend/os/mac/system_config.rb', line 32
     
     def dump_verbose_config(out = $stdout)
       dump_generic_verbose_config(out)
    @@ -1759,14 +1662,14 @@ 

     
     
    -111
    -112
    -113
    -114
    -115
    +101 +102 +103 +104 +105

    -
    # File 'system_config.rb', line 111
    +      
    # File 'system_config.rb', line 101
     
     def hardware
       return if Hardware::CPU.type == :dunno
    @@ -1866,15 +1769,15 @@ 

     
     
    -156
    -157
    -158
    -159
    -160
    -161
    +146 +147 +148 +149 +150 +151

    -
    # File 'system_config.rb', line 156
    +      
    # File 'system_config.rb', line 146
     
     def homebrew_config(out = $stdout)
       out.puts "HOMEBREW_VERSION: #{HOMEBREW_VERSION}"
    @@ -1917,6 +1820,16 @@ 

     
     
    +153
    +154
    +155
    +156
    +157
    +158
    +159
    +160
    +161
    +162
     163
     164
     165
    @@ -1936,20 +1849,10 @@ 

    179 180 181 -182 -183 -184 -185 -186 -187 -188 -189 -190 -191 -192

    +182

    -
    # File 'system_config.rb', line 163
    +      
    # File 'system_config.rb', line 153
     
     def homebrew_env_config(out = $stdout)
       out.puts "HOMEBREW_PREFIX: #{HOMEBREW_PREFIX}"
    @@ -2182,14 +2085,14 @@ 

     
     
    -194
    -195
    -196
    -197
    -198
    +184 +185 +186 +187 +188

    -
    # File 'system_config.rb', line 194
    +      
    # File 'system_config.rb', line 184
     
     def host_software_config(out = $stdout)
       out.puts "Clang: #{describe_clang}"
    @@ -2244,12 +2147,12 @@ 

     
     
    -118
    -119
    -120
    +108 +109 +110

    -
    # File 'system_config.rb', line 118
    +      
    # File 'system_config.rb', line 108
     
     def kernel
       `uname -m`.chomp
    @@ -2390,16 +2293,16 @@ 

     
     
    -29
    -30
    -31
    -32
    -33
    -34
    -35
    +20 +21 +22 +23 +24 +25 +26

    -
    # File 'extend/os/mac/system_config.rb', line 29
    +      
    # File 'extend/os/mac/system_config.rb', line 20
     
     def xcode
       @xcode ||= if MacOS::Xcode.installed?
    diff --git a/docs/method_list.html b/docs/method_list.html
    index 1f161ddd7..63cb2b070 100644
    --- a/docs/method_list.html
    +++ b/docs/method_list.html
    @@ -5373,14 +5373,6 @@ 

    Method List

  • -
    - #check_ruby_version - Homebrew::Diagnostic::Checks -
    -
  • - - -
  • check_runs GitHub @@ -5388,7 +5380,7 @@

    Method List

  • -
  • +
  • #check_service_command FormulaCellarChecks @@ -5396,7 +5388,7 @@

    Method List

  • -
  • +
  • #check_shadowed_headers FormulaCellarChecks @@ -5404,7 +5396,7 @@

    Method List

  • -
  • +
  • #check_shim_references FormulaCellarChecks @@ -5412,7 +5404,7 @@

    Method List

  • -
  • +
  • check_style_and_print Homebrew::Style @@ -5420,7 +5412,7 @@

    Method List

  • -
  • +
  • check_style_impl Homebrew::Style @@ -5428,7 +5420,7 @@

    Method List

  • -
  • +
  • check_style_json Homebrew::Style @@ -5436,7 +5428,7 @@

    Method List

  • -
  • +
  • #check_supported_architecture Homebrew::Diagnostic::Checks @@ -5444,7 +5436,7 @@

    Method List

  • -
  • +
  • #check_tap_git_branch Homebrew::Diagnostic::Checks @@ -5452,7 +5444,7 @@

    Method List

  • -
  • +
  • check_throttle Homebrew @@ -5460,7 +5452,7 @@

    Method List

  • -
  • +
  • #check_tmpdir Homebrew::Diagnostic::Checks @@ -5468,7 +5460,7 @@

    Method List

  • -
  • +
  • #check_tmpdir_executable Homebrew::Diagnostic::Checks @@ -5476,7 +5468,7 @@

    Method List

  • -
  • +
  • #check_tmpdir_sticky_bit Homebrew::Diagnostic::Checks @@ -5484,7 +5476,7 @@

    Method List

  • -
  • +
  • #check_umask_not_zero Homebrew::Diagnostic::Checks @@ -5492,7 +5484,7 @@

    Method List

  • -
  • +
  • #check_user_path_1 Homebrew::Diagnostic::Checks @@ -5500,7 +5492,7 @@

    Method List

  • -
  • +
  • #check_user_path_2 Homebrew::Diagnostic::Checks @@ -5508,7 +5500,7 @@

    Method List

  • -
  • +
  • #check_user_path_3 Homebrew::Diagnostic::Checks @@ -5516,7 +5508,7 @@

    Method List

  • -
  • +
  • #check_uses_from_macos_nodes_order RuboCop::Cop::FormulaAudit::DependencyOrder @@ -5524,7 +5516,7 @@

    Method List

  • -
  • +
  • #check_xcode_license_approved Homebrew::Diagnostic::Checks @@ -5532,7 +5524,7 @@

    Method List

  • -
  • +
  • #check_xcode_minimum_version Homebrew::Diagnostic::Checks @@ -5540,7 +5532,7 @@

    Method List

  • -
  • +
  • #check_xcode_prefix Homebrew::Diagnostic::Checks @@ -5548,7 +5540,7 @@

    Method List

  • -
  • +
  • #check_xcode_prefix_exists Homebrew::Diagnostic::Checks @@ -5556,7 +5548,7 @@

    Method List

  • -
  • +
  • #check_xcode_select_path Homebrew::Diagnostic::Checks @@ -5564,7 +5556,7 @@

    Method List

  • -
  • +
  • #check_xcode_up_to_date Homebrew::Diagnostic::Checks @@ -5572,7 +5564,7 @@

    Method List

  • -
  • +
  • #check_xdg_data_dirs Homebrew::Diagnostic::Checks @@ -5580,7 +5572,7 @@

    Method List

  • -
  • +
  • checkable_urls Homebrew::Livecheck @@ -5588,7 +5580,7 @@

    Method List

  • -
  • +
  • checks Homebrew::Diagnostic @@ -5596,7 +5588,7 @@

    Method List

  • -
  • +
  • #checksum Downloadable @@ -5604,7 +5596,7 @@

    Method List

  • -
  • +
  • #checksum Cask::Download @@ -5612,7 +5604,7 @@

    Method List

  • -
  • +
  • #checksum Utils::Bottles::TagSpecification @@ -5620,7 +5612,7 @@

    Method List

  • -
  • +
  • #checksum Homebrew::ResourceAuditor @@ -5628,7 +5620,7 @@

    Method List

  • -
  • +
  • #checksumable? Cask::Cask @@ -5636,7 +5628,7 @@

    Method List

  • -
  • +
  • #checksums BottleSpecification @@ -5644,7 +5636,7 @@

    Method List

  • -
  • +
  • cherry_pick! Utils::Git @@ -5652,7 +5644,7 @@

    Method List

  • -
  • +
  • cherry_pick_pr! Homebrew @@ -5660,7 +5652,7 @@

    Method List

  • -
  • +
  • #choice Debrew::Menu @@ -5668,7 +5660,7 @@

    Method List

  • -
  • +
  • #chomp Cask::DSL::Version @@ -5676,7 +5668,7 @@

    Method List

  • -
  • +
  • choose Debrew::Menu @@ -5684,7 +5676,7 @@

    Method List

  • -
  • +
  • clang SystemConfig @@ -5692,7 +5684,7 @@

    Method List

  • -
  • +
  • #clang Stdenv @@ -5700,7 +5692,7 @@

    Method List

  • -
  • +
  • clang_build SystemConfig @@ -5708,7 +5700,7 @@

    Method List

  • -
  • +
  • #class_list FormulaClassUnavailableErrorModule @@ -5716,7 +5708,7 @@

    Method List

  • -
  • +
  • #class_name FormulaClassUnavailableErrorModule @@ -5724,7 +5716,7 @@

    Method List

  • -
  • +
  • #class_name RuboCop::Cop::HelperFunctions @@ -5732,7 +5724,7 @@

    Method List

  • -
  • +
  • class_s Formulary @@ -5740,7 +5732,7 @@

    Method List

  • -
  • +
  • #clean Cleaner @@ -5748,7 +5740,7 @@

    Method List

  • -
  • +
  • clean Utils::Backtrace @@ -5756,7 +5748,7 @@

    Method List

  • -
  • +
  • #clean FormulaInstaller @@ -5764,7 +5756,7 @@

    Method List

  • -
  • +
  • #clean! Homebrew::Cleanup @@ -5772,7 +5764,7 @@

    Method List

  • -
  • +
  • clean_argv Homebrew @@ -5780,7 +5772,7 @@

    Method List

  • -
  • +
  • cleanup Homebrew @@ -5788,7 +5780,7 @@

    Method List

  • -
  • +
  • #cleanup LinuxRunnerSpec @@ -5796,7 +5788,7 @@

    Method List

  • -
  • +
  • #cleanup MacOSRunnerSpec @@ -5804,7 +5796,7 @@

    Method List

  • -
  • +
  • cleanup_args Homebrew @@ -5812,7 +5804,7 @@

    Method List

  • -
  • +
  • #cleanup_bootsnap Homebrew::Cleanup @@ -5820,7 +5812,7 @@

    Method List

  • -
  • +
  • #cleanup_cache Homebrew::Cleanup @@ -5828,7 +5820,7 @@

    Method List

  • -
  • +
  • #cleanup_cache_db Homebrew::Cleanup @@ -5836,7 +5828,7 @@

    Method List

  • -
  • +
  • #cleanup_cask Homebrew::Cleanup @@ -5844,7 +5836,7 @@

    Method List

  • -
  • +
  • #cleanup_empty_api_source_directories Homebrew::Cleanup @@ -5852,7 +5844,7 @@

    Method List

  • -
  • +
  • #cleanup_formula Homebrew::Cleanup @@ -5860,7 +5852,7 @@

    Method List

  • -
  • +
  • #cleanup_keg Homebrew::Cleanup @@ -5868,7 +5860,7 @@

    Method List

  • -
  • +
  • #cleanup_lockfiles Homebrew::Cleanup @@ -5876,7 +5868,7 @@

    Method List

  • -
  • +
  • #cleanup_logs Homebrew::Cleanup @@ -5884,7 +5876,7 @@

    Method List

  • -
  • +
  • #cleanup_path Homebrew::Cleanup @@ -5892,7 +5884,7 @@

    Method List

  • -
  • +
  • #cleanup_portable_ruby Homebrew::Cleanup @@ -5900,7 +5892,7 @@

    Method List

  • -
  • +
  • #cleanup_python_site_packages Homebrew::Cleanup @@ -5908,7 +5900,7 @@

    Method List

  • -
  • +
  • #cleanup_unreferenced_downloads Homebrew::Cleanup @@ -5916,7 +5908,7 @@

    Method List

  • -
  • +
  • clear Homebrew::SimulateSystem @@ -5924,7 +5916,7 @@

    Method List

  • -
  • +
  • clear_attempted FormulaInstaller @@ -5932,7 +5924,7 @@

    Method List

  • -
  • +
  • clear_available_cache Utils::Git @@ -5940,7 +5932,7 @@

    Method List

  • -
  • +
  • #clear_cache Tap @@ -5948,7 +5940,7 @@

    Method List

  • -
  • +
  • clear_cache Formulary @@ -5956,7 +5948,7 @@

    Method List

  • -
  • +
  • #clear_cache Downloadable @@ -5964,7 +5956,7 @@

    Method List

  • -
  • +
  • #clear_cache Bottle @@ -5972,7 +5964,7 @@

    Method List

  • -
  • +
  • #clear_cache Cachable @@ -5980,7 +5972,7 @@

    Method List

  • -
  • +
  • clear_cache Utils::Analytics @@ -5988,7 +5980,7 @@

    Method List

  • -
  • +
  • #clear_cache AbstractDownloadStrategy @@ -5996,7 +5988,7 @@

    Method List

  • -
  • +
  • #clear_cache CurlDownloadStrategy @@ -6004,7 +5996,7 @@

    Method List

  • -
  • +
  • clear_executable_cache Utils::Tar @@ -6012,7 +6004,7 @@

    Method List

  • -
  • +
  • clear_fetched FormulaInstaller @@ -6020,7 +6012,7 @@

    Method List

  • -
  • +
  • clear_installed FormulaInstaller @@ -6028,7 +6020,7 @@

    Method List

  • -
  • +
  • clear_path_cache Utils::Curl @@ -6036,7 +6028,7 @@

    Method List

  • -
  • +
  • #clear_sensitive_environment! EnvActivation @@ -6044,7 +6036,7 @@

    Method List

  • -
  • +
  • clear_version_cache Utils::Svn @@ -6052,7 +6044,7 @@

    Method List

  • -
  • +
  • #closed_pull_requests Homebrew::VersionBumpInfo @@ -6060,7 +6052,7 @@

    Method List

  • -
  • +
  • clt SystemConfig @@ -6068,7 +6060,7 @@

    Method List

  • -
  • +
  • #cmd BuildError @@ -6076,7 +6068,7 @@

    Method List

  • -
  • +
  • #cmd ErrorDuringExecution @@ -6084,7 +6076,7 @@

    Method List

  • -
  • +
  • cmd_comment_manpage_lines Homebrew::Manpages @@ -6092,7 +6084,7 @@

    Method List

  • -
  • +
  • cmd_directories Tap @@ -6100,7 +6092,7 @@

    Method List

  • -
  • +
  • cmd_parser_manpage_lines Homebrew::Manpages @@ -6108,7 +6100,7 @@

    Method List

  • -
  • +
  • #codesign_patched_binary Keg @@ -6116,7 +6108,7 @@

    Method List

  • -
  • +
  • #collector BottleSpecification @@ -6124,7 +6116,7 @@

    Method List

  • -
  • +
  • color? Tty @@ -6132,7 +6124,7 @@

    Method List

  • -
  • +
  • #colorpickers Homebrew::UnversionedCaskChecker @@ -6140,7 +6132,7 @@

    Method List

  • -
  • +
  • #column Homebrew::SourceLocation @@ -6148,7 +6140,7 @@

    Method List

  • -
  • +
  • columns Formatter @@ -6156,7 +6148,7 @@

    Method List

  • -
  • +
  • #comma_array Homebrew::CLI::Parser @@ -6164,7 +6156,7 @@

    Method List

  • -
  • +
  • #command Homebrew::Service @@ -6172,7 +6164,7 @@

    Method List

  • -
  • +
  • #command SystemCommand @@ -6180,7 +6172,7 @@

    Method List

  • -
  • +
  • #command SystemCommand::Result @@ -6188,7 +6180,7 @@

    Method List

  • -
  • +
  • command Homebrew @@ -6196,7 +6188,7 @@

    Method List

  • -
  • +
  • #command? Homebrew::Service @@ -6204,7 +6196,7 @@

    Method List

  • -
  • +
  • command_args Homebrew @@ -6212,7 +6204,7 @@

    Method List

  • -
  • +
  • command_description Commands @@ -6220,7 +6212,7 @@

    Method List

  • -
  • +
  • #command_dir Tap @@ -6228,7 +6220,7 @@

    Method List

  • -
  • +
  • #command_files Tap @@ -6236,7 +6228,7 @@

    Method List

  • -
  • +
  • command_gets_completions? Homebrew::Completions @@ -6244,7 +6236,7 @@

    Method List

  • -
  • +
  • command_options Commands @@ -6252,7 +6244,7 @@

    Method List

  • -
  • +
  • command_options Homebrew::Completions @@ -6260,7 +6252,7 @@

    Method List

  • -
  • +
  • commands Commands @@ -6268,7 +6260,7 @@

    Method List

  • -
  • +
  • #commands Homebrew::Manpages::Variables @@ -6276,7 +6268,7 @@

    Method List

  • -
  • +
  • commands Homebrew @@ -6284,7 +6276,7 @@

    Method List

  • -
  • +
  • commands_args Homebrew @@ -6292,7 +6284,7 @@

    Method List

  • -
  • +
  • #comments RuboCop::Cask::AST::Stanza @@ -6300,7 +6292,7 @@

    Method List

  • -
  • +
  • #comments RuboCop::Cask::AST::StanzaBlock @@ -6308,7 +6300,7 @@

    Method List

  • -
  • +
  • #comments_hash RuboCop::Cask::AST::Stanza @@ -6316,7 +6308,7 @@

    Method List

  • -
  • +
  • #commit Version @@ -6324,7 +6316,7 @@

    Method List

  • -
  • +
  • #commit_message GitRepository @@ -6332,7 +6324,7 @@

    Method List

  • -
  • +
  • #commit_outdated? VCSDownloadStrategy @@ -6340,7 +6332,7 @@

    Method List

  • -
  • +
  • #commit_outdated? GitHubGitDownloadStrategy @@ -6348,7 +6340,7 @@

    Method List

  • -
  • +
  • #comparator MacOSRequirement @@ -6356,7 +6348,7 @@

    Method List

  • -
  • +
  • #compare Version @@ -6364,7 +6356,7 @@

    Method List

  • -
  • +
  • #compatible_locations? Bottle @@ -6372,7 +6364,7 @@

    Method List

  • -
  • +
  • #compatible_locations? BottleSpecification @@ -6380,7 +6372,7 @@

    Method List

  • -
  • +
  • #compatible_with? TestRunnerFormula @@ -6388,7 +6380,7 @@

    Method List

  • -
  • +
  • #compiler Tab @@ -6396,7 +6388,7 @@

    Method List

  • -
  • +
  • #compiler CompilerSelector @@ -6404,7 +6396,7 @@

    Method List

  • -
  • +
  • #compiler CxxStdlib @@ -6412,7 +6404,7 @@

    Method List

  • -
  • +
  • #compiler SharedEnvExtension @@ -6420,7 +6412,7 @@

    Method List

  • -
  • +
  • #compiler_failures SoftwareSpec @@ -6428,7 +6420,7 @@

    Method List

  • -
  • +
  • compilers CompilerSelector @@ -6436,7 +6428,7 @@

    Method List

  • -
  • +
  • #compilers CompilerSelector @@ -6444,7 +6436,7 @@

    Method List

  • -
  • +
  • #completion_functions Homebrew::Completions::Variables @@ -6452,7 +6444,7 @@

    Method List

  • -
  • +
  • #completion_installed? Keg @@ -6460,7 +6452,7 @@

    Method List

  • -
  • +
  • completions Homebrew @@ -6468,7 +6460,7 @@

    Method List

  • -
  • +
  • completions_args Homebrew @@ -6476,7 +6468,7 @@

    Method List

  • -
  • +
  • completions_to_link? Homebrew::Completions @@ -6484,7 +6476,7 @@

    Method List

  • -
  • +
  • component_match? Utils::AST @@ -6492,7 +6484,7 @@

    Method List

  • -
  • +
  • #component_precedes? RuboCop::Cop::HelperFunctions @@ -6500,7 +6492,7 @@

    Method List

  • -
  • +
  • #component_problem RuboCop::Cop::FormulaAudit::ComponentsOrder @@ -6508,7 +6500,7 @@

    Method List

  • -
  • +
  • compress Utils::Gzip @@ -6516,7 +6508,7 @@

    Method List

  • -
  • +
  • compress_with_options Utils::Gzip @@ -6524,7 +6516,7 @@

    Method List

  • -
  • +
  • #compute_and_install_dependencies FormulaInstaller @@ -6532,7 +6524,7 @@

    Method List

  • -
  • +
  • #compute_dependencies FormulaInstaller @@ -6540,7 +6532,7 @@

    Method List

  • -
  • +
  • condense_requirements Homebrew @@ -6548,7 +6540,7 @@

    Method List

  • -
  • +
  • condition_from_method_name OnSystem @@ -6556,7 +6548,7 @@

    Method List

  • -
  • +
  • #config Tap @@ -6564,7 +6556,7 @@

    Method List

  • -
  • +
  • #config Cask::Cask @@ -6572,7 +6564,7 @@

    Method List

  • -
  • +
  • config Homebrew @@ -6580,7 +6572,7 @@

    Method List

  • -
  • +
  • #config Cask::Artifact::AbstractArtifact @@ -6588,7 +6580,7 @@

    Method List

  • -
  • +
  • config_args Homebrew @@ -6596,7 +6588,7 @@

    Method List

  • -
  • +
  • #config_path Cask::Cask @@ -6604,7 +6596,7 @@

    Method List

  • -
  • +
  • config_true? Utils::Analytics @@ -6612,7 +6604,7 @@

    Method List

  • -
  • +
  • #conflict_message FormulaConflictError @@ -6620,7 +6612,7 @@

    Method List

  • -
  • +
  • #conflicting_cask Cask::CaskConflictError @@ -6628,7 +6620,7 @@

    Method List

  • -
  • +
  • #conflicts Homebrew::CLI::Parser @@ -6636,7 +6628,7 @@

    Method List

  • -
  • +
  • #conflicts FormulaConflictError @@ -6644,7 +6636,7 @@

    Method List

  • -
  • +
  • conflicts_with Formula @@ -6652,7 +6644,7 @@

    Method List

  • -
  • +
  • #conflicts_with Cask::DSL @@ -6660,7 +6652,7 @@

    Method List

  • -
  • +
  • #consistent_reproducible_symlink_permissions! Keg @@ -6668,7 +6660,7 @@

    Method List

  • -
  • +
  • #const_missing MacOSVersionErrorCompat @@ -6676,7 +6668,7 @@

    Method List

  • -
  • +
  • #container Cask::DSL @@ -6684,7 +6676,7 @@

    Method List

  • -
  • +
  • #container LinuxRunnerSpec @@ -6692,7 +6684,7 @@

    Method List

  • -
  • +
  • #content Cask::CaskLoader::AbstractContentLoader @@ -6700,7 +6692,7 @@

    Method List

  • -
  • +
  • #contents Tap @@ -6708,7 +6700,7 @@

    Method List

  • -
  • +
  • #contents EmbeddedPatch @@ -6716,7 +6708,7 @@

    Method List

  • -
  • +
  • #contents DATAPatch @@ -6724,7 +6716,7 @@

    Method List

  • -
  • +
  • #contents StringPatch @@ -6732,7 +6724,7 @@

    Method List

  • -
  • +
  • #contents Formulary::FormulaContentsLoader @@ -6740,7 +6732,7 @@

    Method List

  • -
  • +
  • #context Homebrew::CLI::Args @@ -6748,7 +6740,7 @@

    Method List

  • -
  • +
  • #continuation Ignorable::ExceptionMixin @@ -6756,7 +6748,7 @@

    Method List

  • -
  • +
  • contributions Homebrew @@ -6764,7 +6756,7 @@

    Method List

  • -
  • +
  • contributions_args Homebrew @@ -6772,7 +6764,7 @@

    Method List

  • -
  • +
  • convert_man_page Homebrew::Manpages @@ -6780,7 +6772,7 @@

    Method List

  • -
  • +
  • convert_to_deprecate_disable_reason_string_or_symbol Formulary @@ -6788,7 +6780,7 @@

    Method List

  • -
  • +
  • convert_to_string_or_symbol Formulary @@ -6796,7 +6788,7 @@

    Method List

  • -
  • +
  • #cookies Cask::URL::DSL @@ -6804,7 +6796,7 @@

    Method List

  • -
  • +
  • #cop_name Homebrew::Style::Offense @@ -6812,7 +6804,7 @@

    Method List

  • -
  • +
  • copy? Metafiles @@ -6820,7 +6812,7 @@

    Method List

  • -
  • +
  • copy_xattrs Cask::Quarantine @@ -6828,7 +6820,7 @@

    Method List

  • -
  • +
  • core_alias_path Formulary @@ -6836,7 +6828,7 @@

    Method List

  • -
  • +
  • core_cask_path? Homebrew @@ -6844,7 +6836,7 @@

    Method List

  • -
  • +
  • core_cask_tap? Homebrew @@ -6852,7 +6844,7 @@

    Method List

  • -
  • +
  • core_formula_path? Homebrew @@ -6860,7 +6852,7 @@

    Method List

  • -
  • +
  • core_formula_tap? Homebrew @@ -6868,7 +6860,7 @@

    Method List

  • -
  • +
  • core_path Formulary @@ -6876,7 +6868,7 @@

    Method List

  • -
  • +
  • core_tap_branch SystemConfig @@ -6884,7 +6876,7 @@

    Method List

  • -
  • +
  • core_tap_config SystemConfig @@ -6892,7 +6884,7 @@

    Method List

  • -
  • +
  • core_tap_head SystemConfig @@ -6900,7 +6892,7 @@

    Method List

  • -
  • +
  • core_tap_last_commit SystemConfig @@ -6908,7 +6900,7 @@

    Method List

  • -
  • +
  • core_tap_origin SystemConfig @@ -6916,7 +6908,7 @@

    Method List

  • -
  • +
  • cores Hardware::CPU @@ -6924,7 +6916,7 @@

    Method List

  • -
  • +
  • cores_as_words Hardware @@ -6932,7 +6924,7 @@

    Method List

  • -
  • +
  • #corrected Homebrew::Style::Offense @@ -6940,7 +6932,7 @@

    Method List

  • -
  • +
  • #corrected? Homebrew::Style::Offense @@ -6948,7 +6940,7 @@

    Method List

  • -
  • +
  • count_issues GitHub @@ -6956,7 +6948,7 @@

    Method List

  • -
  • +
  • count_repo_commits GitHub @@ -6964,7 +6956,7 @@

    Method List

  • -
  • +
  • count_reviews Homebrew @@ -6972,7 +6964,7 @@

    Method List

  • -
  • +
  • #cp_path_sub InstallRenamed @@ -6980,7 +6972,7 @@

    Method List

  • -
  • +
  • #cppflags SharedEnvExtension @@ -6988,7 +6980,7 @@

    Method List

  • -
  • +
  • create Tab @@ -6996,7 +6988,7 @@

    Method List

  • -
  • +
  • create Patch @@ -7004,7 +6996,7 @@

    Method List

  • -
  • +
  • create Options @@ -7012,7 +7004,7 @@

    Method List

  • -
  • +
  • create Version::Token @@ -7020,7 +7012,7 @@

    Method List

  • -
  • +
  • create Version @@ -7028,7 +7020,7 @@

    Method List

  • -
  • +
  • create CompilerFailure @@ -7036,7 +7028,7 @@

    Method List

  • -
  • +
  • create CxxStdlib @@ -7044,7 +7036,7 @@

    Method List

  • -
  • +
  • create Bottle::Filename @@ -7052,7 +7044,7 @@

    Method List

  • -
  • +
  • create Homebrew @@ -7060,7 +7052,7 @@

    Method List

  • -
  • +
  • #create Language::Python::Virtualenv::Virtualenv @@ -7068,7 +7060,7 @@

    Method List

  • -
  • +
  • create Homebrew::Livecheck::LivecheckVersion @@ -7076,7 +7068,7 @@

    Method List

  • -
  • +
  • create_args Homebrew @@ -7084,7 +7076,7 @@

    Method List

  • -
  • +
  • create_bump_pr GitHub @@ -7092,7 +7084,7 @@

    Method List

  • -
  • +
  • create_cask Homebrew @@ -7100,7 +7092,7 @@

    Method List

  • -
  • +
  • create_check_run GitHub @@ -7108,7 +7100,7 @@

    Method List

  • -
  • +
  • create_fork GitHub @@ -7116,7 +7108,7 @@

    Method List

  • -
  • +
  • create_formula Homebrew @@ -7124,7 +7116,7 @@

    Method List

  • -
  • +
  • create_gist GitHub @@ -7132,7 +7124,7 @@

    Method List

  • -
  • +
  • create_issue GitHub @@ -7140,7 +7132,7 @@

    Method List

  • -
  • +
  • create_or_update_release GitHub @@ -7148,7 +7140,7 @@

    Method List

  • -
  • +
  • create_pull_request GitHub @@ -7156,7 +7148,7 @@

    Method List

  • -
  • +
  • #created? CacheStoreDatabase @@ -7164,7 +7156,7 @@

    Method List

  • -
  • +
  • credentials GitHub::API @@ -7172,7 +7164,7 @@

    Method List

  • -
  • +
  • credentials_error_message GitHub::API @@ -7180,7 +7172,7 @@

    Method List

  • -
  • +
  • credentials_type GitHub::API @@ -7188,7 +7180,7 @@

    Method List

  • -
  • +
  • #cron Homebrew::Service @@ -7196,7 +7188,7 @@

    Method List

  • -
  • +
  • csh_quote Utils::Shell @@ -7204,7 +7196,7 @@

    Method List

  • -
  • +
  • #csv Cask::DSL::Version @@ -7212,7 +7204,7 @@

    Method List

  • -
  • +
  • curl Utils::Curl @@ -7220,7 +7212,7 @@

    Method List

  • -
  • +
  • curl_args Utils::Curl @@ -7228,7 +7220,7 @@

    Method List

  • -
  • +
  • curl_check_http_content Utils::Curl @@ -7236,7 +7228,7 @@

    Method List

  • -
  • +
  • #curl_dep_if_needed DependencyCollector @@ -7244,7 +7236,7 @@

    Method List

  • -
  • +
  • curl_deps Homebrew::ResourceAuditor @@ -7252,7 +7244,7 @@

    Method List

  • -
  • +
  • curl_download Utils::Curl @@ -7260,7 +7252,7 @@

    Method List

  • -
  • +
  • curl_executable Utils::Curl @@ -7268,7 +7260,7 @@

    Method List

  • -
  • +
  • curl_headers Utils::Curl @@ -7276,7 +7268,7 @@

    Method List

  • -
  • +
  • curl_http_content_headers_and_checksum Utils::Curl @@ -7284,7 +7276,7 @@

    Method List

  • -
  • +
  • curl_output Utils::Curl @@ -7292,7 +7284,7 @@

    Method List

  • -
  • +
  • curl_path Utils::Curl @@ -7300,7 +7292,7 @@

    Method List

  • -
  • +
  • curl_response_follow_redirections Utils::Curl @@ -7308,7 +7300,7 @@

    Method List

  • -
  • +
  • curl_response_last_location Utils::Curl @@ -7316,7 +7308,7 @@

    Method List

  • -
  • +
  • curl_supports_tls13? Utils::Curl @@ -7324,7 +7316,7 @@

    Method List

  • -
  • +
  • curl_with_workarounds Utils::Curl @@ -7332,7 +7324,7 @@

    Method List

  • -
  • +
  • current Context @@ -7340,7 +7332,7 @@

    Method List

  • -
  • +
  • #current DeprecatedOption @@ -7348,7 +7340,7 @@

    Method List

  • -
  • +
  • current User @@ -7356,7 +7348,7 @@

    Method List

  • -
  • +
  • current= Context @@ -7364,7 +7356,7 @@

    Method List

  • -
  • +
  • current_arch Homebrew::SimulateSystem @@ -7372,7 +7364,7 @@

    Method List

  • -
  • +
  • current_escape_sequence Tty @@ -7380,7 +7372,7 @@

    Method List

  • -
  • +
  • #current_flag DeprecatedOption @@ -7388,7 +7380,7 @@

    Method List

  • -
  • +
  • #current_installed_alias_target Formula @@ -7396,7 +7388,7 @@

    Method List

  • -
  • +
  • current_os Homebrew::SimulateSystem @@ -7404,7 +7396,7 @@

    Method List

  • -
  • +
  • #current_user Homebrew::Diagnostic::Checks @@ -7412,7 +7404,7 @@

    Method List

  • -
  • +
  • #current_version Homebrew::VersionBumpInfo @@ -7420,7 +7412,7 @@

    Method List

  • -
  • +
  • #custom_remote? Tap @@ -7428,7 +7420,7 @@

    Method List

  • -
  • +
  • #cvs_dep_if_needed DependencyCollector @@ -7436,7 +7428,7 @@

    Method List

  • -
  • +
  • #cxx SharedEnvExtension @@ -7444,7 +7436,7 @@

    Method List

  • -
  • +
  • #cxx11 Stdenv @@ -7452,7 +7444,7 @@

    Method List

  • -
  • +
  • #cxx11 Superenv @@ -7460,7 +7452,7 @@

    Method List

  • -
  • +
  • #cxxflags SharedEnvExtension @@ -7468,7 +7460,7 @@

    Method List

  • -
  • +
  • #cxxstdlib Tab @@ -7476,7 +7468,7 @@

    Method List

  • -
  • +
  • cxxstdlib_check Formula @@ -7484,7 +7476,7 @@

    Method List

  • -
  • +
  • #data Cask::URL::DSL @@ -7492,7 +7484,7 @@

    Method List

  • -
  • +
  • #days Homebrew::Cleanup @@ -7500,7 +7492,7 @@

    Method List

  • -
  • +
  • debrew Debrew @@ -7508,7 +7500,7 @@

    Method List

  • -
  • +
  • debug Debrew @@ -7516,7 +7508,7 @@

    Method List

  • -
  • +
  • #debug? Context::ContextStruct @@ -7524,7 +7516,7 @@

    Method List

  • -
  • +
  • #debug? Context @@ -7532,7 +7524,7 @@

    Method List

  • -
  • +
  • debugged_exceptions Debrew @@ -7540,7 +7532,7 @@

    Method List

  • -
  • +
  • #declared_deps SoftwareSpec @@ -7548,7 +7540,7 @@

    Method List

  • -
  • +
  • deconstantize Utils @@ -7556,7 +7548,7 @@

    Method List

  • -
  • +
  • decorate_dependencies Homebrew @@ -7564,7 +7556,7 @@

    Method List

  • -
  • +
  • decorate_requirements Homebrew @@ -7572,7 +7564,7 @@

    Method List

  • -
  • +
  • #default Cask::Config @@ -7580,7 +7572,7 @@

    Method List

  • -
  • +
  • #default Dependencies @@ -7588,7 +7580,7 @@

    Method List

  • -
  • +
  • #default_branch GitHubGitDownloadStrategy @@ -7596,7 +7588,7 @@

    Method List

  • -
  • +
  • default_cask_tap Tap @@ -7604,7 +7596,7 @@

    Method List

  • -
  • +
  • #default_cellar Utils::Bottles::Tag @@ -7612,7 +7604,7 @@

    Method List

  • -
  • +
  • #default_config Cask::Cask @@ -7620,7 +7612,7 @@

    Method List

  • -
  • +
  • #default_cron_values Homebrew::Service @@ -7628,7 +7620,7 @@

    Method List

  • -
  • +
  • default_fields_influx Utils::Analytics @@ -7636,7 +7628,7 @@

    Method List

  • -
  • +
  • #default_origin_branch? GitRepository @@ -7644,7 +7636,7 @@

    Method List

  • -
  • +
  • default_path Cask::CaskLoader @@ -7652,7 +7644,7 @@

    Method List

  • -
  • +
  • #default_plist_name Homebrew::Service @@ -7660,7 +7652,7 @@

    Method List

  • -
  • +
  • #default_prefix Utils::Bottles::Tag @@ -7668,7 +7660,7 @@

    Method List

  • -
  • +
  • default_prefix? Homebrew @@ -7676,7 +7668,7 @@

    Method List

  • -
  • +
  • default_prefix? OS::Mac::Xcode @@ -7684,7 +7676,7 @@

    Method List

  • -
  • +
  • #default_refspec GitHubGitDownloadStrategy @@ -7692,7 +7684,7 @@

    Method List

  • -
  • +
  • #default_remote Tap @@ -7700,7 +7692,7 @@

    Method List

  • -
  • +
  • #default_service_name Homebrew::Service @@ -7708,7 +7700,7 @@

    Method List

  • -
  • +
  • default_tags_influx Utils::Analytics @@ -7716,7 +7708,7 @@

    Method List

  • -
  • +
  • defaults Cask::Config @@ -7724,7 +7716,7 @@

    Method List

  • -
  • +
  • deferred_curl Utils::Analytics @@ -7732,7 +7724,7 @@

    Method List

  • -
  • +
  • #define_cflags Stdenv @@ -7740,7 +7732,7 @@

    Method List

  • -
  • +
  • #delete TapConfig @@ -7748,7 +7740,7 @@

    Method List

  • -
  • +
  • delete Homebrew::Settings @@ -7756,7 +7748,7 @@

    Method List

  • -
  • +
  • #delete CacheStoreDatabase @@ -7764,7 +7756,7 @@

    Method List

  • -
  • +
  • #delete! CacheStore @@ -7772,7 +7764,7 @@

    Method List

  • -
  • +
  • #delete! LinkageCacheStore @@ -7780,7 +7772,7 @@

    Method List

  • -
  • +
  • #delete! DescriptionCacheStore @@ -7788,7 +7780,7 @@

    Method List

  • -
  • +
  • #delete_from_formula_names! DescriptionCacheStore @@ -7796,7 +7788,7 @@

    Method List

  • -
  • +
  • #delete_pyc_files! Keg @@ -7804,7 +7796,7 @@

    Method List

  • -
  • +
  • #delete_rpath Keg @@ -7812,7 +7804,7 @@

    Method List

  • -
  • +
  • #delete_rpath MachOShim @@ -7820,7 +7812,7 @@

    Method List

  • -
  • +
  • delete_uuid! Utils::Analytics @@ -7828,7 +7820,7 @@

    Method List

  • -
  • +
  • deleted_reason Homebrew::MissingFormula @@ -7836,7 +7828,7 @@

    Method List

  • -
  • +
  • demodulize Utils @@ -7844,7 +7836,7 @@

    Method List

  • -
  • +
  • #deny_write Sandbox @@ -7852,7 +7844,7 @@

    Method List

  • -
  • +
  • #deny_write_homebrew_repository Sandbox @@ -7860,7 +7852,7 @@

    Method List

  • -
  • +
  • #deny_write_path Sandbox @@ -7868,7 +7860,7 @@

    Method List

  • -
  • +
  • dep_display_name Homebrew @@ -7876,7 +7868,7 @@

    Method List

  • -
  • +
  • dep_display_s Homebrew @@ -7884,7 +7876,7 @@

    Method List

  • -
  • +
  • #deparallelize Stdenv @@ -7892,7 +7884,7 @@

    Method List

  • -
  • +
  • #deparallelize Superenv @@ -7900,7 +7892,7 @@

    Method List

  • -
  • +
  • dependables Homebrew @@ -7908,7 +7900,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy @@ -7916,7 +7908,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Xz @@ -7924,7 +7916,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Air @@ -7932,7 +7924,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Cab @@ -7940,7 +7932,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Lha @@ -7948,7 +7940,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Rar @@ -7956,7 +7948,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Lzip @@ -7964,7 +7956,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Lzma @@ -7972,7 +7964,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::Zstd @@ -7980,7 +7972,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::P7Zip @@ -7988,7 +7980,7 @@

    Method List

  • -
  • +
  • #dependencies UnpackStrategy::GenericUnar @@ -7996,7 +7988,7 @@

    Method List

  • -
  • +
  • #dependency_collector SoftwareSpec @@ -8004,7 +7996,7 @@

    Method List

  • -
  • +
  • #dependency_name RuboCop::Cop::FormulaAudit::DependencyOrder @@ -8012,7 +8004,7 @@

    Method List

  • -
  • +
  • #dependent FormulaUnavailableError @@ -8020,7 +8012,7 @@

    Method List

  • -
  • +
  • #dependent_s FormulaUnavailableError @@ -8028,7 +8020,7 @@

    Method List

  • -
  • +
  • #dependents TestRunnerFormula @@ -8036,7 +8028,7 @@

    Method List

  • -
  • +
  • dependents DependenciesHelpers @@ -8044,7 +8036,7 @@

    Method List

  • -
  • +
  • depends_on Formula @@ -8052,7 +8044,7 @@

    Method List

  • -
  • +
  • #depends_on Cask::DSL @@ -8060,7 +8052,7 @@

    Method List

  • -
  • +
  • #depends_on SoftwareSpec @@ -8068,7 +8060,7 @@

    Method List

  • -
  • +
  • #depends_on? RuboCop::Cop::FormulaCop @@ -8076,7 +8068,7 @@

    Method List

  • -
  • +
  • #depends_on_name_type? RuboCop::Cop::FormulaCop @@ -8084,7 +8076,7 @@

    Method List

  • -
  • +
  • deprecate! Formula @@ -8092,7 +8084,7 @@

    Method List

  • -
  • +
  • deprecate_disable_info DeprecateDisable @@ -8100,7 +8092,7 @@

    Method List

  • -
  • +
  • #deprecated? Formula @@ -8108,7 +8100,7 @@

    Method List

  • -
  • +
  • deprecated? Formula @@ -8116,7 +8108,7 @@

    Method List

  • -
  • +
  • #deprecated_flags SoftwareSpec @@ -8124,7 +8116,7 @@

    Method List

  • -
  • +
  • deprecated_license? SPDX @@ -8132,7 +8124,7 @@

    Method List

  • -
  • +
  • deprecated_option Formula @@ -8140,7 +8132,7 @@

    Method List

  • -
  • +
  • #deprecated_option SoftwareSpec @@ -8148,7 +8140,7 @@

    Method List

  • -
  • +
  • #deprecated_options SoftwareSpec @@ -8156,7 +8148,7 @@

    Method List

  • -
  • +
  • #deprecation_date Formula @@ -8164,7 +8156,7 @@

    Method List

  • -
  • +
  • deprecation_date Formula @@ -8172,7 +8164,7 @@

    Method List

  • -
  • +
  • #deprecation_reason Formula @@ -8180,7 +8172,7 @@

    Method List

  • -
  • +
  • deprecation_reason Formula @@ -8188,7 +8180,7 @@

    Method List

  • -
  • +
  • #deps Build @@ -8196,7 +8188,7 @@

    Method List

  • -
  • +
  • deps Homebrew @@ -8204,7 +8196,7 @@

    Method List

  • -
  • +
  • #deps Homebrew::Uninstall::DependentsMessage @@ -8212,7 +8204,7 @@

    Method List

  • -
  • +
  • #deps SoftwareSpec @@ -8220,7 +8212,7 @@

    Method List

  • -
  • +
  • #deps CaskDependent @@ -8228,7 +8220,7 @@

    Method List

  • -
  • +
  • #deps DependencyCollector @@ -8236,7 +8228,7 @@

    Method List

  • -
  • +
  • deps_args Homebrew @@ -8244,7 +8236,7 @@

    Method List

  • -
  • +
  • deps_for_dependent Homebrew @@ -8252,7 +8244,7 @@

    Method List

  • -
  • +
  • deps_for_dependents Homebrew @@ -8260,7 +8252,7 @@

    Method List

  • -
  • +
  • deps_uses_from_formulae Homebrew @@ -8268,7 +8260,7 @@

    Method List

  • -
  • +
  • #desc Formula @@ -8276,7 +8268,7 @@

    Method List

  • -
  • +
  • #desc Cask::DSL @@ -8284,7 +8276,7 @@

    Method List

  • -
  • +
  • desc Homebrew @@ -8292,7 +8284,7 @@

    Method List

  • -
  • +
  • desc_args Homebrew @@ -8300,7 +8292,7 @@

    Method List

  • -
  • +
  • desc_info Cask::Info @@ -8308,7 +8300,7 @@

    Method List

  • -
  • +
  • #desc_problem RuboCop::Cop::DescHelper @@ -8316,17 +8308,9 @@

    Method List

  • -
  • -
    - describe_clang - SystemConfig -
    -
  • - -
  • - describe_curl + describe_clang SystemConfig
  • @@ -8334,7 +8318,7 @@

    Method List

  • - describe_git + describe_curl SystemConfig
  • @@ -8342,7 +8326,7 @@

    Method List

  • @@ -8350,7 +8334,7 @@

    Method List