From e32e9e5f34db8611b3678b653b4b719eeefb9906 Mon Sep 17 00:00:00 2001 From: James Mead Date: Tue, 18 Oct 2022 11:27:48 +0100 Subject: [PATCH] [skip ci] Update documentation for v2.0.0.alpha.1 --- docs/Mocha.html | 4 +- docs/Mocha/API.html | 4 +- docs/Mocha/ClassMethods.html | 4 +- docs/Mocha/Configuration.html | 4 +- docs/Mocha/Expectation.html | 120 +++++++++--------- docs/Mocha/ExpectationError.html | 4 +- docs/Mocha/ExpectationErrorFactory.html | 4 +- docs/Mocha/Hooks.html | 4 +- docs/Mocha/Integration.html | 4 +- docs/Mocha/Integration/MiniTest.html | 4 +- docs/Mocha/Integration/MiniTest/Adapter.html | 4 +- docs/Mocha/Integration/TestUnit.html | 4 +- docs/Mocha/Integration/TestUnit/Adapter.html | 4 +- docs/Mocha/Mock.html | 4 +- docs/Mocha/ObjectMethods.html | 4 +- docs/Mocha/ParameterMatchers.html | 4 +- docs/Mocha/ParameterMatchers/AllOf.html | 4 +- docs/Mocha/ParameterMatchers/AnyOf.html | 4 +- .../ParameterMatchers/AnyParameters.html | 4 +- docs/Mocha/ParameterMatchers/Anything.html | 4 +- docs/Mocha/ParameterMatchers/Base.html | 4 +- docs/Mocha/ParameterMatchers/Equals.html | 4 +- .../ParameterMatchers/EquivalentUri.html | 4 +- docs/Mocha/ParameterMatchers/HasEntries.html | 4 +- docs/Mocha/ParameterMatchers/HasEntry.html | 4 +- docs/Mocha/ParameterMatchers/HasKey.html | 4 +- docs/Mocha/ParameterMatchers/HasKeys.html | 4 +- docs/Mocha/ParameterMatchers/HasValue.html | 4 +- docs/Mocha/ParameterMatchers/Includes.html | 4 +- docs/Mocha/ParameterMatchers/InstanceOf.html | 4 +- docs/Mocha/ParameterMatchers/IsA.html | 4 +- docs/Mocha/ParameterMatchers/KindOf.html | 4 +- docs/Mocha/ParameterMatchers/Not.html | 4 +- docs/Mocha/ParameterMatchers/Optionally.html | 4 +- .../ParameterMatchers/RegexpMatches.html | 4 +- .../Mocha/ParameterMatchers/RespondsWith.html | 4 +- .../ParameterMatchers/YamlEquivalent.html | 4 +- docs/Mocha/Sequence.html | 4 +- docs/Mocha/StateMachine.html | 4 +- docs/Mocha/StateMachine/State.html | 4 +- docs/Mocha/StateMachine/StatePredicate.html | 4 +- docs/Mocha/StubbingError.html | 4 +- docs/_index.html | 6 +- docs/file.COPYING.html | 4 +- docs/file.MIT-LICENSE.html | 4 +- docs/file.README.html | 4 +- docs/file.RELEASE.html | 18 ++- docs/frames.html | 2 +- docs/index.html | 4 +- docs/top-level-namespace.html | 4 +- 50 files changed, 172 insertions(+), 158 deletions(-) diff --git a/docs/Mocha.html b/docs/Mocha.html index 227d60fb..d2b692cd 100644 --- a/docs/Mocha.html +++ b/docs/Mocha.html @@ -6,7 +6,7 @@ Module: Mocha - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -244,7 +244,7 @@

diff --git a/docs/Mocha/API.html b/docs/Mocha/API.html index 89c3aee3..da7fb7c6 100644 --- a/docs/Mocha/API.html +++ b/docs/Mocha/API.html @@ -6,7 +6,7 @@ Module: Mocha::API - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -1171,7 +1171,7 @@

diff --git a/docs/Mocha/ClassMethods.html b/docs/Mocha/ClassMethods.html index c4502b4a..a7d687de 100644 --- a/docs/Mocha/ClassMethods.html +++ b/docs/Mocha/ClassMethods.html @@ -6,7 +6,7 @@ Module: Mocha::ClassMethods - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -254,7 +254,7 @@

diff --git a/docs/Mocha/Configuration.html b/docs/Mocha/Configuration.html index c6e6a0f5..60d30455 100644 --- a/docs/Mocha/Configuration.html +++ b/docs/Mocha/Configuration.html @@ -6,7 +6,7 @@ Class: Mocha::Configuration - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -1093,7 +1093,7 @@

diff --git a/docs/Mocha/Expectation.html b/docs/Mocha/Expectation.html index d34f6ac1..85d7ff42 100644 --- a/docs/Mocha/Expectation.html +++ b/docs/Mocha/Expectation.html @@ -6,7 +6,7 @@ Class: Mocha::Expectation - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -674,13 +674,13 @@

 
 
-133
 134
 135
-136
+136 +137 -
# File 'lib/mocha/expectation.rb', line 133
+      
# File 'lib/mocha/expectation.rb', line 134
 
 def at_least(minimum_number_of_times)
   @cardinality.at_least(minimum_number_of_times)
@@ -754,12 +754,12 @@ 

 
 
-151
 152
-153
+153 +154

-
# File 'lib/mocha/expectation.rb', line 151
+      
# File 'lib/mocha/expectation.rb', line 152
 
 def at_least_once
   at_least(1)
@@ -852,13 +852,13 @@ 

 
 
-169
 170
 171
-172
+172 +173

-
# File 'lib/mocha/expectation.rb', line 169
+      
# File 'lib/mocha/expectation.rb', line 170
 
 def at_most(maximum_number_of_times)
   @cardinality.at_most(maximum_number_of_times)
@@ -932,12 +932,12 @@ 

 
 
-187
 188
-189
+189 +190

-
# File 'lib/mocha/expectation.rb', line 187
+      
# File 'lib/mocha/expectation.rb', line 188
 
 def at_most_once
   at_most(1)
@@ -1059,13 +1059,13 @@ 

 
 
-587
 588
 589
-590
+590 +591

-
# File 'lib/mocha/expectation.rb', line 587
+      
# File 'lib/mocha/expectation.rb', line 588
 
 def in_sequence(sequence, *sequences)
   sequences.unshift(sequence).each { |seq| add_in_sequence_ordering_constraint(seq) }
@@ -1179,13 +1179,13 @@ 

 
 
-374
 375
 376
-377
+377 +378

-
# File 'lib/mocha/expectation.rb', line 374
+      
# File 'lib/mocha/expectation.rb', line 375
 
 def multiple_yields(*parameter_groups)
   @yield_parameters.add(*parameter_groups)
@@ -1258,13 +1258,13 @@ 

 
 
-113
 114
 115
-116
+116 +117

-
# File 'lib/mocha/expectation.rb', line 113
+      
# File 'lib/mocha/expectation.rb', line 114
 
 def never
   @cardinality.exactly(0)
@@ -1345,13 +1345,13 @@ 

 
 
-96
 97
 98
-99
+99 +100

-
# File 'lib/mocha/expectation.rb', line 96
+      
# File 'lib/mocha/expectation.rb', line 97
 
 def once
   @cardinality.exactly(1)
@@ -1505,13 +1505,13 @@ 

 
 
-461
 462
 463
-464
+464 +465

-
# File 'lib/mocha/expectation.rb', line 461
+      
# File 'lib/mocha/expectation.rb', line 462
 
 def raises(exception = RuntimeError, message = nil)
   @return_values += ReturnValues.new(ExceptionRaiser.new(exception, message))
@@ -1710,13 +1710,13 @@ 

 
 
-421
 422
 423
-424
+424 +425

-
# File 'lib/mocha/expectation.rb', line 421
+      
# File 'lib/mocha/expectation.rb', line 422
 
 def returns(*values)
   @return_values += ReturnValues.build(*values)
@@ -1877,13 +1877,13 @@ 

 
 
-535
 536
 537
-538
+538 +539

-
# File 'lib/mocha/expectation.rb', line 535
+      
# File 'lib/mocha/expectation.rb', line 536
 
 def then(state = nil)
   add_side_effect(ChangeStateSideEffect.new(state)) if state
@@ -2033,13 +2033,13 @@ 

 
 
-500
 501
 502
-503
+503 +504

-
# File 'lib/mocha/expectation.rb', line 500
+      
# File 'lib/mocha/expectation.rb', line 501
 
 def throws(tag, object = nil)
   @return_values += ReturnValues.new(Thrower.new(tag, object))
@@ -2149,13 +2149,13 @@ 

 
 
-45
 46
 47
-48
+48 +49

-
# File 'lib/mocha/expectation.rb', line 45
+      
# File 'lib/mocha/expectation.rb', line 46
 
 def times(range)
   @cardinality.times(range)
@@ -2237,13 +2237,13 @@ 

 
 
-71
 72
 73
-74
+74 +75

-
# File 'lib/mocha/expectation.rb', line 71
+      
# File 'lib/mocha/expectation.rb', line 72
 
 def twice
   @cardinality.exactly(2)
@@ -2349,13 +2349,13 @@ 

 
 
-559
 560
 561
-562
+562 +563

-
# File 'lib/mocha/expectation.rb', line 559
+      
# File 'lib/mocha/expectation.rb', line 560
 
 def when(state_predicate)
   add_ordering_constraint(InStateOrderingConstraint.new(state_predicate))
@@ -2587,16 +2587,16 @@ 

 
 
-268
 269
 270
-271
+271 +272

-
# File 'lib/mocha/expectation.rb', line 268
+      
# File 'lib/mocha/expectation.rb', line 269
 
 def with(*expected_parameters_or_matchers, &matching_block)
-  @parameters_matcher = ParametersMatcher.new(expected_parameters_or_matchers, &matching_block)
+  @parameters_matcher = ParametersMatcher.new(expected_parameters_or_matchers, self, &matching_block)
   self
 end
@@ -2668,13 +2668,13 @@

 
 
-288
 289
 290
-291
+291 +292

-
# File 'lib/mocha/expectation.rb', line 288
+      
# File 'lib/mocha/expectation.rb', line 289
 
 def with_block_given
   @block_matcher = BlockMatchers::BlockGiven.new
@@ -2749,13 +2749,13 @@ 

 
 
-307
 308
 309
-310
+310 +311

-
# File 'lib/mocha/expectation.rb', line 307
+      
# File 'lib/mocha/expectation.rb', line 308
 
 def with_no_block_given
   @block_matcher = BlockMatchers::NoBlockGiven.new
@@ -2883,12 +2883,12 @@ 

 
 
-346
 347
-348
+348 +349

-
# File 'lib/mocha/expectation.rb', line 346
+      
# File 'lib/mocha/expectation.rb', line 347
 
 def yields(*parameters)
   multiple_yields(parameters)
@@ -2911,7 +2911,7 @@ 

diff --git a/docs/Mocha/ExpectationError.html b/docs/Mocha/ExpectationError.html index 72819326..d0e956d1 100644 --- a/docs/Mocha/ExpectationError.html +++ b/docs/Mocha/ExpectationError.html @@ -6,7 +6,7 @@ Exception: Mocha::ExpectationError - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -142,7 +142,7 @@

Overview

diff --git a/docs/Mocha/ExpectationErrorFactory.html b/docs/Mocha/ExpectationErrorFactory.html index 30e08d4d..18a934f6 100644 --- a/docs/Mocha/ExpectationErrorFactory.html +++ b/docs/Mocha/ExpectationErrorFactory.html @@ -6,7 +6,7 @@ Class: Mocha::ExpectationErrorFactory - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -250,7 +250,7 @@

diff --git a/docs/Mocha/Hooks.html b/docs/Mocha/Hooks.html index 3881ee9a..79225d12 100644 --- a/docs/Mocha/Hooks.html +++ b/docs/Mocha/Hooks.html @@ -6,7 +6,7 @@ Module: Mocha::Hooks - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -360,7 +360,7 @@

diff --git a/docs/Mocha/Integration.html b/docs/Mocha/Integration.html index e85bdc18..4b80cac6 100644 --- a/docs/Mocha/Integration.html +++ b/docs/Mocha/Integration.html @@ -6,7 +6,7 @@ Module: Mocha::Integration - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -115,7 +115,7 @@

Defined Under Namespace

diff --git a/docs/Mocha/Integration/MiniTest.html b/docs/Mocha/Integration/MiniTest.html index f43cdea8..1e979b22 100644 --- a/docs/Mocha/Integration/MiniTest.html +++ b/docs/Mocha/Integration/MiniTest.html @@ -6,7 +6,7 @@ Module: Mocha::Integration::MiniTest - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -113,7 +113,7 @@

Defined Under Namespace

diff --git a/docs/Mocha/Integration/MiniTest/Adapter.html b/docs/Mocha/Integration/MiniTest/Adapter.html index 578ed748..ecd29dce 100644 --- a/docs/Mocha/Integration/MiniTest/Adapter.html +++ b/docs/Mocha/Integration/MiniTest/Adapter.html @@ -6,7 +6,7 @@ Module: Mocha::Integration::MiniTest::Adapter - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -154,7 +154,7 @@

Methods included from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/Integration/TestUnit.html b/docs/Mocha/Integration/TestUnit.html index ab3e6337..703542c5 100644 --- a/docs/Mocha/Integration/TestUnit.html +++ b/docs/Mocha/Integration/TestUnit.html @@ -6,7 +6,7 @@ Module: Mocha::Integration::TestUnit - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -113,7 +113,7 @@

Defined Under Namespace

diff --git a/docs/Mocha/Integration/TestUnit/Adapter.html b/docs/Mocha/Integration/TestUnit/Adapter.html index d4259184..53ea88d3 100644 --- a/docs/Mocha/Integration/TestUnit/Adapter.html +++ b/docs/Mocha/Integration/TestUnit/Adapter.html @@ -6,7 +6,7 @@ Module: Mocha::Integration::TestUnit::Adapter - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -154,7 +154,7 @@

Methods included from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/Mock.html b/docs/Mocha/Mock.html index 2cf063a2..a376540b 100644 --- a/docs/Mocha/Mock.html +++ b/docs/Mocha/Mock.html @@ -6,7 +6,7 @@ Class: Mocha::Mock - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -1131,7 +1131,7 @@

diff --git a/docs/Mocha/ObjectMethods.html b/docs/Mocha/ObjectMethods.html index ca8e6c21..12f18801 100644 --- a/docs/Mocha/ObjectMethods.html +++ b/docs/Mocha/ObjectMethods.html @@ -6,7 +6,7 @@ Module: Mocha::ObjectMethods - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -755,7 +755,7 @@

diff --git a/docs/Mocha/ParameterMatchers.html b/docs/Mocha/ParameterMatchers.html index bc5db488..a2261b28 100644 --- a/docs/Mocha/ParameterMatchers.html +++ b/docs/Mocha/ParameterMatchers.html @@ -6,7 +6,7 @@ Module: Mocha::ParameterMatchers - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -3054,7 +3054,7 @@

diff --git a/docs/Mocha/ParameterMatchers/AllOf.html b/docs/Mocha/ParameterMatchers/AllOf.html index abfd8bbe..8a190728 100644 --- a/docs/Mocha/ParameterMatchers/AllOf.html +++ b/docs/Mocha/ParameterMatchers/AllOf.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::AllOf - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/AnyOf.html b/docs/Mocha/ParameterMatchers/AnyOf.html index c42ee0cb..6e3850f2 100644 --- a/docs/Mocha/ParameterMatchers/AnyOf.html +++ b/docs/Mocha/ParameterMatchers/AnyOf.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::AnyOf - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/AnyParameters.html b/docs/Mocha/ParameterMatchers/AnyParameters.html index 14087fd1..2d064be9 100644 --- a/docs/Mocha/ParameterMatchers/AnyParameters.html +++ b/docs/Mocha/ParameterMatchers/AnyParameters.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::AnyParameters - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/Anything.html b/docs/Mocha/ParameterMatchers/Anything.html index 2b9bec8b..180f566d 100644 --- a/docs/Mocha/ParameterMatchers/Anything.html +++ b/docs/Mocha/ParameterMatchers/Anything.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Anything - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/Base.html b/docs/Mocha/ParameterMatchers/Base.html index 01e4e7f2..9c0505ad 100644 --- a/docs/Mocha/ParameterMatchers/Base.html +++ b/docs/Mocha/ParameterMatchers/Base.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Base - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -431,7 +431,7 @@

diff --git a/docs/Mocha/ParameterMatchers/Equals.html b/docs/Mocha/ParameterMatchers/Equals.html index e8b123e8..2a9ac5ba 100644 --- a/docs/Mocha/ParameterMatchers/Equals.html +++ b/docs/Mocha/ParameterMatchers/Equals.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Equals - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/EquivalentUri.html b/docs/Mocha/ParameterMatchers/EquivalentUri.html index 540656a6..e02230f6 100644 --- a/docs/Mocha/ParameterMatchers/EquivalentUri.html +++ b/docs/Mocha/ParameterMatchers/EquivalentUri.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::EquivalentUri - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/HasEntries.html b/docs/Mocha/ParameterMatchers/HasEntries.html index 8960e9ca..bd984103 100644 --- a/docs/Mocha/ParameterMatchers/HasEntries.html +++ b/docs/Mocha/ParameterMatchers/HasEntries.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::HasEntries - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/HasEntry.html b/docs/Mocha/ParameterMatchers/HasEntry.html index 8ab5644b..73b9bb83 100644 --- a/docs/Mocha/ParameterMatchers/HasEntry.html +++ b/docs/Mocha/ParameterMatchers/HasEntry.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::HasEntry - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/HasKey.html b/docs/Mocha/ParameterMatchers/HasKey.html index 4971795a..63ddc8da 100644 --- a/docs/Mocha/ParameterMatchers/HasKey.html +++ b/docs/Mocha/ParameterMatchers/HasKey.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::HasKey - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/HasKeys.html b/docs/Mocha/ParameterMatchers/HasKeys.html index 0f26ebbc..fb900351 100644 --- a/docs/Mocha/ParameterMatchers/HasKeys.html +++ b/docs/Mocha/ParameterMatchers/HasKeys.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::HasKeys - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/HasValue.html b/docs/Mocha/ParameterMatchers/HasValue.html index 7597b626..30f6864e 100644 --- a/docs/Mocha/ParameterMatchers/HasValue.html +++ b/docs/Mocha/ParameterMatchers/HasValue.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::HasValue - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/Includes.html b/docs/Mocha/ParameterMatchers/Includes.html index 2e515de7..348e452c 100644 --- a/docs/Mocha/ParameterMatchers/Includes.html +++ b/docs/Mocha/ParameterMatchers/Includes.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Includes - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/InstanceOf.html b/docs/Mocha/ParameterMatchers/InstanceOf.html index 22b8025d..9d3966fb 100644 --- a/docs/Mocha/ParameterMatchers/InstanceOf.html +++ b/docs/Mocha/ParameterMatchers/InstanceOf.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::InstanceOf - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/IsA.html b/docs/Mocha/ParameterMatchers/IsA.html index 9b0218a7..1c72d36a 100644 --- a/docs/Mocha/ParameterMatchers/IsA.html +++ b/docs/Mocha/ParameterMatchers/IsA.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::IsA - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/KindOf.html b/docs/Mocha/ParameterMatchers/KindOf.html index 025e881c..65fbe95f 100644 --- a/docs/Mocha/ParameterMatchers/KindOf.html +++ b/docs/Mocha/ParameterMatchers/KindOf.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::KindOf - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/Not.html b/docs/Mocha/ParameterMatchers/Not.html index 1d91c804..8a0ffdef 100644 --- a/docs/Mocha/ParameterMatchers/Not.html +++ b/docs/Mocha/ParameterMatchers/Not.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Not - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/Optionally.html b/docs/Mocha/ParameterMatchers/Optionally.html index adabe1d1..8fa922fb 100644 --- a/docs/Mocha/ParameterMatchers/Optionally.html +++ b/docs/Mocha/ParameterMatchers/Optionally.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::Optionally - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/RegexpMatches.html b/docs/Mocha/ParameterMatchers/RegexpMatches.html index 88874687..1f846908 100644 --- a/docs/Mocha/ParameterMatchers/RegexpMatches.html +++ b/docs/Mocha/ParameterMatchers/RegexpMatches.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::RegexpMatches - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/RespondsWith.html b/docs/Mocha/ParameterMatchers/RespondsWith.html index 8cc9777a..baea3312 100644 --- a/docs/Mocha/ParameterMatchers/RespondsWith.html +++ b/docs/Mocha/ParameterMatchers/RespondsWith.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::RespondsWith - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/ParameterMatchers/YamlEquivalent.html b/docs/Mocha/ParameterMatchers/YamlEquivalent.html index f185c024..951857fd 100644 --- a/docs/Mocha/ParameterMatchers/YamlEquivalent.html +++ b/docs/Mocha/ParameterMatchers/YamlEquivalent.html @@ -6,7 +6,7 @@ Class: Mocha::ParameterMatchers::YamlEquivalent - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -143,7 +143,7 @@

Methods inherited from - Generated on Mon Oct 17 15:37:40 2022 by + Generated on Tue Oct 18 11:27:32 2022 by yard 0.9.28 (ruby-3.1.0). diff --git a/docs/Mocha/Sequence.html b/docs/Mocha/Sequence.html index 89121189..08b008fa 100644 --- a/docs/Mocha/Sequence.html +++ b/docs/Mocha/Sequence.html @@ -6,7 +6,7 @@ Class: Mocha::Sequence - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -139,7 +139,7 @@

Overview

diff --git a/docs/Mocha/StateMachine.html b/docs/Mocha/StateMachine.html index 9cf8ee76..4fa9e896 100644 --- a/docs/Mocha/StateMachine.html +++ b/docs/Mocha/StateMachine.html @@ -6,7 +6,7 @@ Class: Mocha::StateMachine - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -672,7 +672,7 @@

diff --git a/docs/Mocha/StateMachine/State.html b/docs/Mocha/StateMachine/State.html index 3d37331e..93b11816 100644 --- a/docs/Mocha/StateMachine/State.html +++ b/docs/Mocha/StateMachine/State.html @@ -6,7 +6,7 @@ Class: Mocha::StateMachine::State - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -138,7 +138,7 @@

Overview

diff --git a/docs/Mocha/StateMachine/StatePredicate.html b/docs/Mocha/StateMachine/StatePredicate.html index 83eb6ef9..4ceed231 100644 --- a/docs/Mocha/StateMachine/StatePredicate.html +++ b/docs/Mocha/StateMachine/StatePredicate.html @@ -6,7 +6,7 @@ Class: Mocha::StateMachine::StatePredicate - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -134,7 +134,7 @@

Direct Known Subclasses

diff --git a/docs/Mocha/StubbingError.html b/docs/Mocha/StubbingError.html index ff35c9c5..41163437 100644 --- a/docs/Mocha/StubbingError.html +++ b/docs/Mocha/StubbingError.html @@ -6,7 +6,7 @@ Class: Mocha::StubbingError - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -140,7 +140,7 @@

Overview

diff --git a/docs/_index.html b/docs/_index.html index efc87128..078e487a 100644 --- a/docs/_index.html +++ b/docs/_index.html @@ -4,7 +4,7 @@ - Mocha 2.0.0.alpha + Mocha 2.0.0.alpha.1 @@ -52,7 +52,7 @@
-

Mocha 2.0.0.alpha

+

Mocha 2.0.0.alpha.1

Alphabetic Index

@@ -516,7 +516,7 @@

Namespace Listing A-Z

diff --git a/docs/file.COPYING.html b/docs/file.COPYING.html index 3a723127..39de6ac4 100644 --- a/docs/file.COPYING.html +++ b/docs/file.COPYING.html @@ -6,7 +6,7 @@ File: COPYING - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -71,7 +71,7 @@
diff --git a/docs/file.MIT-LICENSE.html b/docs/file.MIT-LICENSE.html index ddcc46b5..e20d8098 100644 --- a/docs/file.MIT-LICENSE.html +++ b/docs/file.MIT-LICENSE.html @@ -6,7 +6,7 @@ File: MIT-LICENSE - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -75,7 +75,7 @@
diff --git a/docs/file.README.html b/docs/file.README.html index 1abf095b..28c7d79d 100644 --- a/docs/file.README.html +++ b/docs/file.README.html @@ -6,7 +6,7 @@ File: README - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -438,7 +438,7 @@

License

diff --git a/docs/file.RELEASE.html b/docs/file.RELEASE.html index 6527c29d..8d3d69b6 100644 --- a/docs/file.RELEASE.html +++ b/docs/file.RELEASE.html @@ -6,7 +6,7 @@ File: RELEASE - — Mocha 2.0.0.alpha + — Mocha 2.0.0.alpha.1 @@ -59,6 +59,20 @@

Release Notes

+

2.0.0.alpha.1

+ +

External changes

+ +
    +
  • Improve strict keyword argument matching deprecation warning by including the source location of the stub definition (77c0d4cc)
  • +
+ +

Internal changes

+ +
    +
  • Disable Style/Semicolon cop globally (8cd0b705)
  • +
+

2.0.0.alpha

External changes

@@ -1152,7 +1166,7 @@

0.1.1

diff --git a/docs/frames.html b/docs/frames.html index 9ca8b346..f3f51a48 100644 --- a/docs/frames.html +++ b/docs/frames.html @@ -2,7 +2,7 @@ - Mocha 2.0.0.alpha + Mocha 2.0.0.alpha.1