Merge pull request #8292 from vidusheeamoli/add-new-files

sorbet/files.yaml: add new files
This commit is contained in:
Issy Long 2020-08-11 22:11:36 +01:00 committed by GitHub
commit 3e5ff1ff90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 51 additions and 0 deletions

View File

@ -82,6 +82,7 @@ false:
- ./cleanup.rb
- ./cli/parser.rb
- ./cmd/--cache.rb
- ./cmd/--caskroom.rb
- ./cmd/--cellar.rb
- ./cmd/--env.rb
- ./cmd/--prefix.rb
@ -489,9 +490,12 @@ false:
- ./rubocops/cask/homepage_matches_url.rb
- ./rubocops/cask/homepage_url_trailing_slash.rb
- ./rubocops/cask/mixin/cask_help.rb
- ./rubocops/cask/mixin/on_desc_stanza.rb
- ./rubocops/cask/mixin/on_homepage_stanza.rb
- ./rubocops/cask/no_dsl_version.rb
- ./rubocops/cask/stanza_order.rb
- ./rubocops/shared/desc_helper.rb
- ./rubocops/shared/helper_functions.rb
- ./searchable.rb
- ./test/PATH_spec.rb
- ./test/bash_spec.rb
@ -512,6 +516,7 @@ false:
- ./test/checksum_spec.rb
- ./test/cleaner_spec.rb
- ./test/cmd/--cache_spec.rb
- ./test/cmd/--caskroom_spec.rb
- ./test/cmd/--cellar_spec.rb
- ./test/cmd/--env_spec.rb
- ./test/cmd/--prefix_spec.rb
@ -555,6 +560,7 @@ false:
- ./test/compiler_failure_spec.rb
- ./test/cxxstdlib_spec.rb
- ./test/dependable_spec.rb
- ./test/dependencies_helpers_spec.rb
- ./test/descriptions_spec.rb
- ./test/dev-cmd/bottle_spec.rb
- ./test/dev-cmd/bump-formula-pr_spec.rb
@ -617,6 +623,7 @@ false:
- ./test/requirements/osxfuse_requirement_spec.rb
- ./test/requirements_spec.rb
- ./test/rubocop_spec.rb
- ./test/rubocops/cask/desc_spec.rb
- ./test/rubocops/cask/homepage_matches_url_spec.rb
- ./test/rubocops/cask/homepage_url_trailing_slash_spec.rb
- ./test/rubocops/cask/no_dsl_version_spec.rb
@ -818,6 +825,7 @@ false:
- ./test/utils/github_spec.rb
- ./test/utils/popen_spec.rb
- ./test/utils/shell_spec.rb
- ./test/utils/spdx_spec.rb
- ./test/utils/svn_spec.rb
- ./test/utils/tty_spec.rb
- ./test/version_spec.rb
@ -837,13 +845,17 @@ true:
- ./checksum.rb
- ./cleaner.rb
- ./cli/args.rb
- ./compat/cli/parser.rb
- ./compat/dependencies_helpers.rb
- ./compat/extend/nil.rb
- ./compat/extend/string.rb
- ./compat/formula.rb
- ./compat/os/mac.rb
- ./compilers.rb
- ./config.rb
- ./context.rb
- ./dependable.rb
- ./dependencies_helpers.rb
- ./dependency_collector.rb
- ./description_cache_store.rb
- ./descriptions.rb
@ -883,6 +895,7 @@ true:
- ./rubocops/cask/ast/cask_header.rb
- ./rubocops/cask/ast/stanza.rb
- ./rubocops/cask/constants/stanza.rb
- ./rubocops/cask/desc.rb
- ./rubocops/cask/extend/string.rb
- ./rubocops/deprecate.rb
- ./tap_constants.rb
@ -894,6 +907,7 @@ true:
- ./utils/notability.rb
- ./utils/shebang.rb
- ./utils/shell.rb
- ./utils/spdx.rb
- ./utils/svn.rb
- ./utils/tty.rb
- ./utils/user.rb

View File

@ -17,5 +17,21 @@ module Homebrew::CLI
def named_args; end
def force_bottle?; end
def debug?; end
def quiet?; end
def verbose?; end
end
class Parser
module Compat
include Kernel
module DeprecatedArgs
include Kernel
end
end
end
end

View File

@ -20,6 +20,16 @@ module Dependable
def tags; end
end
module DependenciesHelpers
include Kernel
module Compat
include Kernel
def args_includes_ignores(args); end
end
end
class Formula
module Compat
include Kernel

View File

@ -0,0 +1,11 @@
# typed: strict
module SPDX
include Kernel
def spdx_data; end
def download_latest_license_data!(to: JSON_PATH); end
def curl_download(*args, to: nil, partial: true, **options); end
end