Merge pull request #12544 from Homebrew/dependabot/bundler/Library/Homebrew/spoom-1.1.7

build(deps): bump spoom from 1.1.6 to 1.1.7 in /Library/Homebrew
This commit is contained in:
Bo Anderson 2021-12-11 01:42:23 +00:00 committed by GitHub
commit 8fde5d50a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View File

@ -163,7 +163,7 @@ GEM
sorbet-runtime (0.5.9442)
sorbet-runtime-stub (0.2.0)
sorbet-static (0.5.9442-universal-darwin-14)
spoom (1.1.6)
spoom (1.1.7)
sorbet (>= 0.5.9204)
sorbet-runtime (>= 0.5.9204)
thor (>= 0.19.2)

View File

@ -1121,6 +1121,8 @@ module Spoom::Sorbet::Errors
end
end
Spoom::Sorbet::Errors::DEFAULT_ERROR_URL_BASE = T.let(T.unsafe(nil), String)
class Spoom::Sorbet::Errors::Error
include ::Comparable
@ -1148,8 +1150,8 @@ class Spoom::Sorbet::Errors::Error
end
class Spoom::Sorbet::Errors::Parser
sig { void }
def initialize; end
sig { params(error_url_base: String).void }
def initialize(error_url_base: T.unsafe(nil)); end
sig { params(output: String).returns(T::Array[Spoom::Sorbet::Errors::Error]) }
def parse(output); end
@ -1162,6 +1164,9 @@ class Spoom::Sorbet::Errors::Parser
sig { void }
def close_error; end
sig { params(error_url_base: String).returns(Regexp) }
def error_line_match_regexp(error_url_base); end
sig { params(line: String).returns(T.nilable(Spoom::Sorbet::Errors::Error)) }
def match_error_line(line); end
@ -1169,12 +1174,11 @@ class Spoom::Sorbet::Errors::Parser
def open_error(error); end
class << self
sig { params(output: String).returns(T::Array[Spoom::Sorbet::Errors::Error]) }
def parse_string(output); end
sig { params(output: String, error_url_base: String).returns(T::Array[Spoom::Sorbet::Errors::Error]) }
def parse_string(output, error_url_base: T.unsafe(nil)); end
end
end
Spoom::Sorbet::Errors::Parser::ERROR_LINE_MATCH_REGEX = T.let(T.unsafe(nil), Regexp)
Spoom::Sorbet::Errors::Parser::HEADER = T.let(T.unsafe(nil), Array)
Spoom::Sorbet::GEM_PATH = T.let(T.unsafe(nil), String)

View File

@ -98,7 +98,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-0.21.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-cobertura-2.0.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-runtime-stub-0.2.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thor-1.1.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/spoom-1.1.6/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/spoom-1.1.7/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/yard-0.9.27/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/yard-sorbet-0.6.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tapioca-0.5.6/lib"