diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index e85c5f94a9..d33516abbd 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -97,28 +97,28 @@ GEM hpricot (>= 0.8.2) mustache (>= 0.7.0) rdiscount (>= 1.5.8) - rspec (3.10.0) - rspec-core (~> 3.10.0) - rspec-expectations (~> 3.10.0) - rspec-mocks (~> 3.10.0) - rspec-core (3.10.2) - rspec-support (~> 3.10.0) - rspec-expectations (3.10.2) + rspec (3.11.0) + rspec-core (~> 3.11.0) + rspec-expectations (~> 3.11.0) + rspec-mocks (~> 3.11.0) + rspec-core (3.11.0) + rspec-support (~> 3.11.0) + rspec-expectations (3.11.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.10.0) + rspec-support (~> 3.11.0) rspec-github (2.3.1) rspec-core (~> 3.0) rspec-its (1.3.0) rspec-core (>= 3.0.0) rspec-expectations (>= 3.0.0) - rspec-mocks (3.10.3) + rspec-mocks (3.11.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.10.0) + rspec-support (~> 3.11.0) rspec-retry (0.6.2) rspec-core (> 3.3) rspec-sorbet (1.8.3) sorbet-runtime - rspec-support (3.10.3) + rspec-support (3.11.0) rspec-wait (0.0.9) rspec (>= 3, < 4) rspec_junit_formatter (0.5.1) diff --git a/Library/Homebrew/sorbet/rbi/gems/rspec-core@3.10.2.rbi b/Library/Homebrew/sorbet/rbi/gems/rspec-core@3.11.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rspec-core@3.10.2.rbi rename to Library/Homebrew/sorbet/rbi/gems/rspec-core@3.11.0.rbi index e8bc54d255..98d18e64e0 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rspec-core@3.10.2.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rspec-core@3.11.0.rbi @@ -17,6 +17,8 @@ module RSpec def context(*args, &example_group_block); end def current_example; end def current_example=(example); end + def current_scope; end + def current_scope=(scope); end def describe(*args, &example_group_block); end def example_group(*args, &example_group_block); end def fcontext(*args, &example_group_block); end @@ -1640,6 +1642,8 @@ module RSpec::Core::MemoizedHelpers def __init_memoized; end def __memoized; end + def enforce_value_expectation(matcher, method_name); end + def matcher_supports_value_expectations?(matcher); end class << self def define_helpers_on(example_group); end @@ -2037,6 +2041,10 @@ end RSpec::Core::Ordering::Random::MAX_32_BIT = T.let(T.unsafe(nil), Integer) +class RSpec::Core::Ordering::RecentlyModified + def order(list); end +end + class RSpec::Core::Ordering::Registry def initialize(configuration); end @@ -2470,6 +2478,8 @@ class RSpec::Core::World def report_filter_message(message); end def reporter; end def reset; end + def rspec_is_quitting; end + def rspec_is_quitting=(_arg0); end def shared_example_group_registry; end def source_from_file(path); end def syntax_highlighter; end diff --git a/Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.10.2.rbi b/Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.11.0.rbi similarity index 97% rename from Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.10.2.rbi rename to Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.11.0.rbi index 9fa161a562..4d3323534f 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.10.2.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rspec-expectations@3.11.0.rbi @@ -17,6 +17,8 @@ module RSpec def context(*args, &example_group_block); end def current_example; end def current_example=(example); end + def current_scope; end + def current_scope=(scope); end def describe(*args, &example_group_block); end def example_group(*args, &example_group_block); end def fcontext(*args, &example_group_block); end @@ -330,6 +332,16 @@ module RSpec::Expectations::Syntax end end +class RSpec::Expectations::ValueExpectationTarget < ::RSpec::Expectations::ExpectationTarget + def not_to(matcher = T.unsafe(nil), message = T.unsafe(nil), &block); end + def to(matcher = T.unsafe(nil), message = T.unsafe(nil), &block); end + + private + + def enforce_value_expectation(matcher); end + def supports_value_expectations?(matcher); end +end + module RSpec::Expectations::Version; end RSpec::Expectations::Version::STRING = T.let(T.unsafe(nil), String) RSpec::MODULES_TO_AUTOLOAD = T.let(T.unsafe(nil), Hash) @@ -521,6 +533,7 @@ class RSpec::Matchers::BuiltIn::BaseMatcher def present_ivars; end def rescued_exception; end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -719,6 +732,7 @@ class RSpec::Matchers::BuiltIn::Change < ::RSpec::Matchers::BuiltIn::BaseMatcher def from(value); end def matches?(event_proc); end def supports_block_expectations?; end + def supports_value_expectations?; end def to(value); end private @@ -746,6 +760,8 @@ class RSpec::Matchers::BuiltIn::ChangeDetails def message_notation(receiver, message); end end +module RSpec::Matchers::BuiltIn::ChangeDetails::UNDEFINED; end + class RSpec::Matchers::BuiltIn::ChangeFromValue < ::RSpec::Matchers::BuiltIn::SpecificValuesChange def initialize(change_details, expected_before); end @@ -766,6 +782,7 @@ class RSpec::Matchers::BuiltIn::ChangeRelatively < ::RSpec::Matchers::BuiltIn::B def failure_message; end def matches?(event_proc); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -795,6 +812,7 @@ class RSpec::Matchers::BuiltIn::Compound < ::RSpec::Matchers::BuiltIn::BaseMatch def matcher_1; end def matcher_2; end def supports_block_expectations?; end + def supports_value_expectations?; end protected @@ -811,6 +829,7 @@ class RSpec::Matchers::BuiltIn::Compound < ::RSpec::Matchers::BuiltIn::BaseMatch def matcher_2_matches?; end def matcher_is_diffable?(matcher); end def matcher_supports_block_expectations?(matcher); end + def matcher_supports_value_expectations?(matcher); end end class RSpec::Matchers::BuiltIn::Compound::And < ::RSpec::Matchers::BuiltIn::Compound @@ -1180,6 +1199,7 @@ class RSpec::Matchers::BuiltIn::Output < ::RSpec::Matchers::BuiltIn::BaseMatcher def failure_message_when_negated; end def matches?(block); end def supports_block_expectations?; end + def supports_value_expectations?; end def to_stderr; end def to_stderr_from_any_process; end def to_stdout; end @@ -1209,6 +1229,7 @@ class RSpec::Matchers::BuiltIn::RaiseError def failure_message_when_negated; end def matches?(given_proc, negative_expectation = T.unsafe(nil), &block); end def supports_block_expectations?; end + def supports_value_expectations?; end def with_message(expected_message); end private @@ -1306,6 +1327,7 @@ class RSpec::Matchers::BuiltIn::SpecificValuesChange < ::RSpec::Matchers::BuiltI def failure_message; end def matches?(event_proc); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1352,6 +1374,7 @@ class RSpec::Matchers::BuiltIn::ThrowSymbol def failure_message_when_negated; end def matches?(given_proc); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1369,6 +1392,7 @@ class RSpec::Matchers::BuiltIn::YieldControl < ::RSpec::Matchers::BuiltIn::BaseM def failure_message_when_negated; end def matches?(block); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1404,6 +1428,7 @@ class RSpec::Matchers::BuiltIn::YieldSuccessiveArgs < ::RSpec::Matchers::BuiltIn def failure_message_when_negated; end def matches?(block); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1421,6 +1446,7 @@ class RSpec::Matchers::BuiltIn::YieldWithArgs < ::RSpec::Matchers::BuiltIn::Base def failure_message_when_negated; end def matches?(block); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1437,6 +1463,7 @@ class RSpec::Matchers::BuiltIn::YieldWithNoArgs < ::RSpec::Matchers::BuiltIn::Ba def failure_message_when_negated; end def matches?(block); end def supports_block_expectations?; end + def supports_value_expectations?; end private @@ -1499,6 +1526,7 @@ module RSpec::Matchers::DSL::DefaultImplementations def diffable?; end def expects_call_stack_jump?; end def supports_block_expectations?; end + def supports_value_expectations?; end private diff --git a/Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.10.3.rbi b/Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.11.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.10.3.rbi rename to Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.11.0.rbi index 71b8396bf5..5652af094e 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.10.3.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rspec-mocks@3.11.0.rbi @@ -17,6 +17,8 @@ module RSpec def context(*args, &example_group_block); end def current_example; end def current_example=(example); end + def current_scope; end + def current_scope=(scope); end def describe(*args, &example_group_block); end def example_group(*args, &example_group_block); end def fcontext(*args, &example_group_block); end @@ -55,6 +57,12 @@ class RSpec::Mocks::AllowanceTarget < ::RSpec::Mocks::TargetBase def to_not(matcher, *_args); end end +class RSpec::Mocks::AndInvokeImplementation + def initialize(procs_to_invoke); end + + def call(*args, &block); end +end + class RSpec::Mocks::AndReturnImplementation def initialize(values_to_return); end @@ -783,6 +791,7 @@ class RSpec::Mocks::Matchers::Receive def initialize(message, block); end def and_call_original(*args, &block); end + def and_invoke(*args, &block); end def and_raise(*args, &block); end def and_return(*args, &block); end def and_throw(*args, &block); end @@ -832,6 +841,7 @@ class RSpec::Mocks::Matchers::ReceiveMessageChain def initialize(chain, &block); end def and_call_original(*args, &block); end + def and_invoke(*args, &block); end def and_raise(*args, &block); end def and_return(*args, &block); end def and_throw(*args, &block); end @@ -896,6 +906,7 @@ class RSpec::Mocks::MessageExpectation include ::RSpec::Mocks::MessageExpectation::ImplementationDetails def and_call_original; end + def and_invoke(first_proc, *procs); end def and_raise(*args); end def and_return(first_value, *values); end def and_throw(*args); end diff --git a/Library/Homebrew/sorbet/rbi/gems/rspec-support@3.10.3.rbi b/Library/Homebrew/sorbet/rbi/gems/rspec-support@3.11.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rspec-support@3.10.3.rbi rename to Library/Homebrew/sorbet/rbi/gems/rspec-support@3.11.0.rbi index 289b7ac39a..71f0c8571a 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rspec-support@3.10.3.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rspec-support@3.11.0.rbi @@ -17,6 +17,8 @@ module RSpec def context(*args, &example_group_block); end def current_example; end def current_example=(example); end + def current_scope; end + def current_scope=(scope); end def describe(*args, &example_group_block); end def example_group(*args, &example_group_block); end def fcontext(*args, &example_group_block); end diff --git a/Library/Homebrew/sorbet/rbi/gems/rspec@3.10.0.rbi b/Library/Homebrew/sorbet/rbi/gems/rspec@3.11.0.rbi similarity index 95% rename from Library/Homebrew/sorbet/rbi/gems/rspec@3.10.0.rbi rename to Library/Homebrew/sorbet/rbi/gems/rspec@3.11.0.rbi index 4cc8691f2a..2ceaf83924 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rspec@3.10.0.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rspec@3.11.0.rbi @@ -1,9 +1,9 @@ +# typed: true + # DO NOT EDIT MANUALLY # This is an autogenerated file for types exported from the `rspec` gem. # Please instead update this file by running `bin/tapioca gem rspec`. -# typed: true - module RSpec extend ::RSpec::Support::Warnings extend ::RSpec::Core::Warnings @@ -17,6 +17,8 @@ module RSpec def context(*args, &example_group_block); end def current_example; end def current_example=(example); end + def current_scope; end + def current_scope=(scope); end def describe(*args, &example_group_block); end def example_group(*args, &example_group_block); end def fcontext(*args, &example_group_block); end diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index 553751e0e9..8da040a025 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -70,11 +70,11 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-1 $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rdiscount-2.2.0.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rexml-3.2.5/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ronn-0.7.3/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-support-3.10.3/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-core-3.10.2/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-expectations-3.10.2/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-mocks-3.10.3/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-3.10.0/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-support-3.11.0/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-core-3.11.0/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-expectations-3.11.0/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-mocks-3.11.0/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-3.11.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-github-2.3.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-its-1.3.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-retry-0.6.2/lib"