diff --git a/source/documentation/3.13/rspec-core/RSpec.html b/source/documentation/3.13/rspec-core/RSpec.html index 7ddf2fe08..1f5f9f682 100644 --- a/source/documentation/3.13/rspec-core/RSpec.html +++ b/source/documentation/3.13/rspec-core/RSpec.html @@ -5,7 +5,7 @@ Module: RSpec - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -477,9 +477,9 @@

diff --git a/source/documentation/3.13/rspec-core/RSpec/Core.html b/source/documentation/3.13/rspec-core/RSpec/Core.html index fa0fbf19b..ed9fc4c8c 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core.html @@ -5,7 +5,7 @@ Module: RSpec::Core - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -80,9 +80,9 @@

diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Configuration.html b/source/documentation/3.13/rspec-core/RSpec/Core/Configuration.html index 11259b2a1..ec60b65ff 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Configuration.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Configuration.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Configuration - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -750,7 +750,7 @@

#raise_on_warning=(value) ⇒ void -

Turns warnings into errors.

+

Turns RSpec warnings into errors.

  • @@ -2266,7 +2266,6 @@

    -2025
     2026
     2027
     2028
    @@ -2279,10 +2278,11 @@ 

    2035 2036 2037 -2038

    +2038 +2039 -
    # File 'lib/rspec/core/configuration.rb', line 2025
    +      
    # File 'lib/rspec/core/configuration.rb', line 2026
     def after(scope=nil, *meta, &block)
       handle_suite_hook(scope, meta) do
         @after_suite_hooks.unshift Hooks::AfterHook.new(block, {})
    @@ -2520,7 +2520,6 @@ 

    -2055
     2056
     2057
     2058
    @@ -2533,10 +2532,11 @@ 

    2065 2066 2067 -2068

    +2068 +2069

    -
    # File 'lib/rspec/core/configuration.rb', line 2055
    +      
    # File 'lib/rspec/core/configuration.rb', line 2056
     def append_after(scope=nil, *meta, &block)
       handle_suite_hook(scope, meta) do
         @after_suite_hooks << Hooks::AfterHook.new(block, {})
    @@ -2568,7 +2568,6 @@ 

    -2073
     2074
     2075
     2076
    @@ -2577,10 +2576,11 @@ 

    2079 2080 2081 -2082

    +2082 +2083

    -
    # File 'lib/rspec/core/configuration.rb', line 2073
    +      
    # File 'lib/rspec/core/configuration.rb', line 2074
     def around(scope=nil, *meta, &block)
       # defeat Ruby 2.5 lazy proc allocation to ensure
       # the methods below are passed the same proc instances
    @@ -2757,7 +2757,6 @@ 

    -1970
     1971
     1972
     1973
    @@ -2770,10 +2769,11 @@ 

    1980 1981 1982 -1983

    +1983 +1984

    -
    # File 'lib/rspec/core/configuration.rb', line 1970
    +      
    # File 'lib/rspec/core/configuration.rb', line 1971
     def before(scope=nil, *meta, &block)
       handle_suite_hook(scope, meta) do
         @before_suite_hooks << Hooks::BeforeHook.new(block, {})
    @@ -2952,13 +2952,13 @@ 

    -1894
     1895
     1896
    -1897
    +1897 +1898

    -
    # File 'lib/rspec/core/configuration.rb', line 1894
    +      
    # File 'lib/rspec/core/configuration.rb', line 1895
     def (*filters, &block)
       meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
       @derived_metadata_blocks.append(block, meta)
    @@ -3103,15 +3103,15 @@ 

    -1867
     1868
     1869
     1870
     1871
    -1872
    +1872 +1873

    -
    # File 'lib/rspec/core/configuration.rb', line 1867
    +      
    # File 'lib/rspec/core/configuration.rb', line 1868
     def disable_monkey_patching!
       self.expose_dsl_globally = false
       self.disable_monkey_patching = true
    @@ -3404,17 +3404,17 @@ 

    -1805
     1806
     1807
     1808
     1809
     1810
     1811
    -1812
    +1812 +1813

    -
    # File 'lib/rspec/core/configuration.rb', line 1805
    +      
    # File 'lib/rspec/core/configuration.rb', line 1806
     def expose_current_running_example_as(method_name)
       ExposeCurrentExample.module_exec do
         extend RSpec::SharedContext
    @@ -4374,12 +4374,12 @@ 

    -2108
     2109
    -2110
    +2110 +2111

    -
    # File 'lib/rspec/core/configuration.rb', line 2108
    +      
    # File 'lib/rspec/core/configuration.rb', line 2109
     def on_example_group_definition(&block)
       on_example_group_definition_callbacks << block
     end
    @@ -4404,12 +4404,12 @@

    -2114 2115 -2116

    +2116 +2117
    -
    # File 'lib/rspec/core/configuration.rb', line 2114
    +      
    # File 'lib/rspec/core/configuration.rb', line 2115
     def on_example_group_definition_callbacks
       @on_example_group_definition_callbacks ||= []
     end
    @@ -4533,7 +4533,6 @@

    -2000
     2001
     2002
     2003
    @@ -4546,10 +4545,11 @@ 

    2010 2011 2012 -2013

    +2013 +2014

    -
    # File 'lib/rspec/core/configuration.rb', line 2000
    +      
    # File 'lib/rspec/core/configuration.rb', line 2001
     def prepend_before(scope=nil, *meta, &block)
       handle_suite_hook(scope, meta) do
         @before_suite_hooks.unshift Hooks::BeforeHook.new(block, {})
    @@ -4590,12 +4590,12 @@ 

    -1827
     1828
    -1829
    +1829 +1830

    -
    # File 'lib/rspec/core/configuration.rb', line 1827
    +      
    # File 'lib/rspec/core/configuration.rb', line 1828
     def raise_errors_for_deprecations!
       self.deprecation_stream = Formatters::DeprecationFormatter::RaiseErrorStream.new
     end
    @@ -4608,8 +4608,9 @@

    #raise_on_warning=(value) ⇒ void

    -

    Turns warnings into errors. This can be useful when -you want RSpec to run in a 'strict' no warning situation.

    +

    Turns RSpec warnings into errors. This can be useful when +you want RSpec to run in a 'strict' no warning situation. +(Note this does not capture or raise on Ruby warnings).

    @@ -4624,16 +4625,16 @@

    -1775
     1776
     1777
     1778
     1779
     1780
    -1781
    +1781 +1782

    -
    # File 'lib/rspec/core/configuration.rb', line 1775
    +      
    # File 'lib/rspec/core/configuration.rb', line 1776
     def raise_on_warning=(value)
       if value
         RSpec::Support.warning_notifier = RAISE_ERROR_WARNING_NOTIFIER
    @@ -4973,7 +4974,6 @@ 

    -1917
     1918
     1919
     1920
    @@ -4988,10 +4988,11 @@ 

    1929 1930 1931 -1932

    +1932 +1933

    -
    # File 'lib/rspec/core/configuration.rb', line 1917
    +      
    # File 'lib/rspec/core/configuration.rb', line 1918
     def when_first_matching_example_defined(*filters)
       specified_meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
       callback = lambda do |example_or_group_meta|
    @@ -5011,9 +5012,9 @@ 

  • diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/ConfigurationOptions.html b/source/documentation/3.13/rspec-core/RSpec/Core/ConfigurationOptions.html index 6924c573b..2562e809c 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/ConfigurationOptions.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/ConfigurationOptions.html @@ -5,7 +5,7 @@ Class: RSpec::Core::ConfigurationOptions - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -324,9 +324,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/DSL.html b/source/documentation/3.13/rspec-core/RSpec/Core/DSL.html index ae25f6739..2cb7cf5eb 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/DSL.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/DSL.html @@ -5,7 +5,7 @@ Module: RSpec::Core::DSL - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -184,9 +184,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Example.html b/source/documentation/3.13/rspec-core/RSpec/Core/Example.html index 303053181..a8e70c6a8 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Example.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Example.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Example - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -1195,9 +1195,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Example/ExecutionResult.html b/source/documentation/3.13/rspec-core/RSpec/Core/Example/ExecutionResult.html index 220bdb096..ae441930f 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Example/ExecutionResult.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Example/ExecutionResult.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Example::ExecutionResult - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -604,9 +604,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Example/Procsy.html b/source/documentation/3.13/rspec-core/RSpec/Core/Example/Procsy.html index 6583400d8..ea44b2b2b 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Example/Procsy.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Example/Procsy.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Example::Procsy - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -292,9 +292,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/ExampleGroup.html b/source/documentation/3.13/rspec-core/RSpec/Core/ExampleGroup.html index 3a1eb32b2..158a52235 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/ExampleGroup.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/ExampleGroup.html @@ -5,7 +5,7 @@ Class: RSpec::Core::ExampleGroup - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -2283,9 +2283,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters.html index 768c608da..c2d297bb5 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Formatters - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -200,9 +200,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseFormatter.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseFormatter.html index e5016bbd3..3b8091263 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseFormatter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseFormatter.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::BaseFormatter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -351,9 +351,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseTextFormatter.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseTextFormatter.html index cdbdcc5e8..9275815e5 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseTextFormatter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/BaseTextFormatter.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::BaseTextFormatter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -276,9 +276,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ConsoleCodes.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ConsoleCodes.html index e9e99c718..ea5db2f60 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ConsoleCodes.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ConsoleCodes.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Formatters::ConsoleCodes - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -206,9 +206,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/FallbackMessageFormatter.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/FallbackMessageFormatter.html index a4e6d38ca..d18640660 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/FallbackMessageFormatter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/FallbackMessageFormatter.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::FallbackMessageFormatter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -169,9 +169,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Helpers.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Helpers.html index eeb2478d2..ba4661261 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Helpers.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Helpers.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Formatters::Helpers - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -365,9 +365,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/HtmlSnippetExtractor.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/HtmlSnippetExtractor.html index e2a783216..4a5145153 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/HtmlSnippetExtractor.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/HtmlSnippetExtractor.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::HtmlSnippetExtractor - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -390,9 +390,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Loader.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Loader.html index 91ead6d34..6dfd80941 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Loader.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Loader.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::Loader - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -328,9 +328,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ProfileFormatter.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ProfileFormatter.html index edc29c197..40c5df171 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ProfileFormatter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/ProfileFormatter.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::ProfileFormatter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -172,9 +172,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Protocol.html b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Protocol.html index f3ee4aa6f..6d80d5b22 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Protocol.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Formatters/Protocol.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Formatters::Protocol - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -781,9 +781,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Hooks.html b/source/documentation/3.13/rspec-core/RSpec/Core/Hooks.html index 21f2a9bdb..9dde086d6 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Hooks.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Hooks.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Hooks - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -732,9 +732,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers.html b/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers.html index 899fa57a7..ff4d51cec 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers.html @@ -5,7 +5,7 @@ Module: RSpec::Core::MemoizedHelpers - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -342,9 +342,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers/ClassMethods.html b/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers/ClassMethods.html index 0043161b8..3add9bbb7 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers/ClassMethods.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/MemoizedHelpers/ClassMethods.html @@ -5,7 +5,7 @@ Module: RSpec::Core::MemoizedHelpers::ClassMethods - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -475,9 +475,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Metadata.html b/source/documentation/3.13/rspec-core/RSpec/Core/Metadata.html index 7c332f25a..6c38461c9 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Metadata.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Metadata.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Metadata - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -200,9 +200,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/MetadataFilter.html b/source/documentation/3.13/rspec-core/RSpec/Core/MetadataFilter.html index 3ed38a2d0..5abc8a6da 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/MetadataFilter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/MetadataFilter.html @@ -5,7 +5,7 @@ Module: RSpec::Core::MetadataFilter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -62,9 +62,9 @@

    Overview

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/MultipleExceptionError.html b/source/documentation/3.13/rspec-core/RSpec/Core/MultipleExceptionError.html index 261f64068..9c3960f58 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/MultipleExceptionError.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/MultipleExceptionError.html @@ -5,7 +5,7 @@ Exception: RSpec::Core::MultipleExceptionError - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -500,9 +500,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications.html index 1fb547266..4c36e6547 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Notifications - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -62,9 +62,9 @@

    Overview

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/CustomNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/CustomNotification.html index 22a800e65..28108c163 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/CustomNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/CustomNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::CustomNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -133,9 +133,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/DeprecationNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/DeprecationNotification.html index 3ff5d6eeb..3635b172f 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/DeprecationNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/DeprecationNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::DeprecationNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -296,9 +296,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExampleNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExampleNotification.html index 27d91ea7f..43f3d28e5 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExampleNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExampleNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::ExampleNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -132,9 +132,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExamplesNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExamplesNotification.html index a3710a28d..57ff39c5f 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExamplesNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ExamplesNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::ExamplesNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -484,9 +484,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/FailedExampleNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/FailedExampleNotification.html index a470e0b44..eef1b1ea9 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/FailedExampleNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/FailedExampleNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::FailedExampleNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -508,9 +508,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/GroupNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/GroupNotification.html index 6363dc296..f7d253d93 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/GroupNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/GroupNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::GroupNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -128,9 +128,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/MessageNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/MessageNotification.html index 587eb9a28..952f40d58 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/MessageNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/MessageNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::MessageNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -120,9 +120,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/NullNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/NullNotification.html index 9fcc63b03..aedbd6438 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/NullNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/NullNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::NullNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -70,9 +70,9 @@

    Overview

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFailedAsExpectedNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFailedAsExpectedNotification.html index 8bed45a79..4aced21fe 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFailedAsExpectedNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFailedAsExpectedNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::PendingExampleFailedAsExpectedNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -82,9 +82,9 @@

    Methods inherited from #colorized_formatted_backtrace, #colorized_message_lines, #description, #exception, #formatted_backtrace, #fully_formatted, #fully_formatted_lines, #message_lines

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFixedNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFixedNotification.html index 378a58e83..a742e31be 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFixedNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/PendingExampleFixedNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::PendingExampleFixedNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -82,9 +82,9 @@

    Methods inherited from #colorized_formatted_backtrace, #colorized_message_lines, #description, #exception, #formatted_backtrace, #fully_formatted, #fully_formatted_lines, #message_lines

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ProfileNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ProfileNotification.html index 1a4a86312..a0a3fc5d3 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ProfileNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/ProfileNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::ProfileNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -489,9 +489,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SeedNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SeedNotification.html index dc35172b0..2fcbc6f61 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SeedNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SeedNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::SeedNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -271,9 +271,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SkippedExampleNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SkippedExampleNotification.html index f0d96ea96..71b610ef2 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SkippedExampleNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SkippedExampleNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::SkippedExampleNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -193,9 +193,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/StartNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/StartNotification.html index f2a70f79b..2e97f9a8c 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/StartNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/StartNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::StartNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -165,9 +165,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SummaryNotification.html b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SummaryNotification.html index d938f8c13..5ff207cb3 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SummaryNotification.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Notifications/SummaryNotification.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Notifications::SummaryNotification - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -814,9 +814,9 @@

    diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Pending.html b/source/documentation/3.13/rspec-core/RSpec/Core/Pending.html index e44602641..bfade3703 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Pending.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Pending.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Pending - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -71,7 +71,7 @@

    • - #pending(message = nil) ⇒ void + #pending(message = nil, &_block) ⇒ void

      Marks an example as pending.

      @@ -170,7 +170,7 @@

      # File 'lib/rspec/core/pending.rb', line 62
      -def pending(message=nil)
      +def pending(message=nil, &_block)
         current_example = RSpec.current_example
         if block_given?
           raise ArgumentError, <<-EOS.gsub(/^\s+\|/, '')
      @@ -267,9 +267,9 @@ 

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Pending/SkipDeclaredInExample.html b/source/documentation/3.13/rspec-core/RSpec/Core/Pending/SkipDeclaredInExample.html index a6e47d488..de42fd858 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Pending/SkipDeclaredInExample.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Pending/SkipDeclaredInExample.html @@ -5,7 +5,7 @@ Exception: RSpec::Core::Pending::SkipDeclaredInExample - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -155,9 +155,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/RakeTask.html b/source/documentation/3.13/rspec-core/RSpec/Core/RakeTask.html index c3457301a..5be03eee5 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/RakeTask.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/RakeTask.html @@ -5,7 +5,7 @@ Class: RSpec::Core::RakeTask - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -513,9 +513,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Reporter.html b/source/documentation/3.13/rspec-core/RSpec/Core/Reporter.html index 1ecc24584..5dcbad8a9 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Reporter.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Reporter.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Reporter - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -414,9 +414,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Runner.html b/source/documentation/3.13/rspec-core/RSpec/Core/Runner.html index dd79c8a3b..2b4533f73 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Runner.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Runner.html @@ -5,7 +5,7 @@ Class: RSpec::Core::Runner - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -503,9 +503,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Sandbox.html b/source/documentation/3.13/rspec-core/RSpec/Core/Sandbox.html index 501791fa2..51eb4c484 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Sandbox.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Sandbox.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Sandbox - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -135,9 +135,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/SharedContext.html b/source/documentation/3.13/rspec-core/RSpec/Core/SharedContext.html index a6d23b416..d628d8058 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/SharedContext.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/SharedContext.html @@ -5,7 +5,7 @@ Module: RSpec::Core::SharedContext - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -73,9 +73,9 @@

      Overview

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup.html b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup.html index 760280af5..447d8f207 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup.html @@ -5,7 +5,7 @@ Module: RSpec::Core::SharedExampleGroup - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -222,9 +222,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup/TopLevelDSL.html b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup/TopLevelDSL.html index 627f61624..599902622 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup/TopLevelDSL.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroup/TopLevelDSL.html @@ -5,7 +5,7 @@ Module: RSpec::Core::SharedExampleGroup::TopLevelDSL - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -166,9 +166,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupInclusionStackFrame.html b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupInclusionStackFrame.html index 68e38354d..2596f9ce1 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupInclusionStackFrame.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupInclusionStackFrame.html @@ -5,7 +5,7 @@ Class: RSpec::Core::SharedExampleGroupInclusionStackFrame - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -268,9 +268,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupModule.html b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupModule.html index 5d4b1a43d..8d4fc26f6 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupModule.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/SharedExampleGroupModule.html @@ -5,7 +5,7 @@ Class: RSpec::Core::SharedExampleGroupModule - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -197,9 +197,9 @@

      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/Version.html b/source/documentation/3.13/rspec-core/RSpec/Core/Version.html index 28b05f331..08beced39 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/Version.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/Version.html @@ -5,7 +5,7 @@ Module: RSpec::Core::Version - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -70,13 +70,13 @@

      -
      '3.13.0'
      +
      '3.13.1'
      diff --git a/source/documentation/3.13/rspec-core/RSpec/Core/World.html b/source/documentation/3.13/rspec-core/RSpec/Core/World.html index b318e5712..b7cc9dd05 100644 --- a/source/documentation/3.13/rspec-core/RSpec/Core/World.html +++ b/source/documentation/3.13/rspec-core/RSpec/Core/World.html @@ -5,7 +5,7 @@ Class: RSpec::Core::World - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -606,9 +606,9 @@

      diff --git a/source/documentation/3.13/rspec-core/_index.html b/source/documentation/3.13/rspec-core/_index.html index 34a0183db..f56a7238f 100644 --- a/source/documentation/3.13/rspec-core/_index.html +++ b/source/documentation/3.13/rspec-core/_index.html @@ -4,7 +4,7 @@ - Documentation by YARD 0.9.34 + Documentation by YARD 0.9.36 @@ -36,7 +36,7 @@
      -

      Documentation by YARD 0.9.34

      +

      Documentation by YARD 0.9.36

      Alphabetic Index

      File Listing

      @@ -354,9 +354,9 @@

      Namespace Listing A-Z

      diff --git a/source/documentation/3.13/rspec-core/file.Changelog.html b/source/documentation/3.13/rspec-core/file.Changelog.html index 138a485ed..12cc57087 100644 --- a/source/documentation/3.13/rspec-core/file.Changelog.html +++ b/source/documentation/3.13/rspec-core/file.Changelog.html @@ -5,7 +5,7 @@ File: Changelog - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -40,7 +40,13 @@

      Development

      -

      Full Changelog

      +

      Full Changelog

      +

      3.13.1 / 2024-09-02

      +

      Full Changelog

      +

      Bug fixes:

      +
        +
      • Sort ids to run as the original order to fix --bisect. (Maki Kawahara, #3093)
      • +

      3.13.0 / 2024-02-04

      Full Changelog

      Enhancements:

      @@ -2366,9 +2372,9 @@

      2.0.0.beta.22 / 2010-09-12

    diff --git a/source/documentation/3.13/rspec-core/file.Filtering.html b/source/documentation/3.13/rspec-core/file.Filtering.html index d7effcee2..4c6f21912 100644 --- a/source/documentation/3.13/rspec-core/file.Filtering.html +++ b/source/documentation/3.13/rspec-core/file.Filtering.html @@ -5,7 +5,7 @@ File: Filtering - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -170,9 +170,9 @@

    Silencing filter announcements

    diff --git a/source/documentation/3.13/rspec-core/file.LICENSE.html b/source/documentation/3.13/rspec-core/file.LICENSE.html index a25badebb..41743944b 100644 --- a/source/documentation/3.13/rspec-core/file.LICENSE.html +++ b/source/documentation/3.13/rspec-core/file.LICENSE.html @@ -5,7 +5,7 @@ File: LICENSE - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -64,9 +64,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    diff --git a/source/documentation/3.13/rspec-core/file.README.html b/source/documentation/3.13/rspec-core/file.README.html index 7182b8a25..d1ed6b583 100644 --- a/source/documentation/3.13/rspec-core/file.README.html +++ b/source/documentation/3.13/rspec-core/file.README.html @@ -5,7 +5,7 @@ File: README - — Documentation by YARD 0.9.34 + — Documentation by YARD 0.9.36 @@ -326,9 +326,9 @@

    Also see

    diff --git a/source/documentation/3.13/rspec-core/frames.html b/source/documentation/3.13/rspec-core/frames.html index 4f918f573..53734c221 100644 --- a/source/documentation/3.13/rspec-core/frames.html +++ b/source/documentation/3.13/rspec-core/frames.html @@ -2,13 +2,18 @@ - Documentation by YARD 0.9.34 + Documentation by YARD 0.9.36