diff --git a/source/documentation/3.13/rspec-core/RSpec.html b/source/documentation/3.13/rspec-core/RSpec.html index 1f5f9f682..a7fec8324 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.36 + — Documentation by YARD 0.9.37 @@ -152,7 +152,7 @@

-

Examples:

+

Examples:

RSpec.configuration.drb_port = 1234

See Also:

@@ -257,7 +257,7 @@

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.add_formatter 'documentation'
 end
@@ -305,7 +305,7 @@

-

Examples:

+

Examples:


 RSpec.configure do |c|
   # context.example is deprecated, but RSpec.current_example is not
@@ -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 ed9fc4c8c..72679d338 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.36 + — Documentation by YARD 0.9.37 @@ -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 ec60b65ff..f5c7b29b5 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.36 + — Documentation by YARD 0.9.37 @@ -87,16 +87,16 @@

Overview

-

Examples:

-

Standard settings

-

+

Examples:

+

Standard settings

+
RSpec.configure do |c|
   c.drb          = true
   c.drb_port     = 1234
   c.default_path = 'behavior'
 end
-

Hooks

-

+

Hooks

+
RSpec.configure do |c|
   c.before(:suite)   { establish_connection }
   c.before(:example) {  :authorized }
@@ -2266,9 +2266,6 @@ 

-2026
-2027
-2028
 2029
 2030
 2031
@@ -2279,10 +2276,13 @@ 

2036 2037 2038 -2039

+2039 +2040 +2041 +2042

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

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.alias_example_group_to :describe_model, :type => :model
 end
@@ -2383,7 +2383,7 @@ 

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.alias_example_to :pending, :pending => true
 end
@@ -2461,7 +2461,7 @@ 

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.alias_it_behaves_like_to(:it_has_behavior, 'has behavior:')
 end
@@ -2520,9 +2520,6 @@ 

-2056
-2057
-2058
 2059
 2060
 2061
@@ -2533,10 +2530,13 @@ 

2066 2067 2068 -2069

+2069 +2070 +2071 +2072

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

-2074
-2075
-2076
 2077
 2078
 2079
 2080
 2081
 2082
-2083
+2083 +2084 +2085 +2086

-
# File 'lib/rspec/core/configuration.rb', line 2074
+      
# File 'lib/rspec/core/configuration.rb', line 2077
 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,9 +2757,6 @@ 

-1971
-1972
-1973
 1974
 1975
 1976
@@ -2770,10 +2767,13 @@ 

1981 1982 1983 -1984

+1984 +1985 +1986 +1987

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

-

Examples:

+

Examples:


 RSpec.configure do |rspec|
   rspec.default_formatter = 'doc'
@@ -2915,7 +2915,7 @@ 

-

Examples:

+

Examples:

RSpec.configure do |config|
   # Tag all groups and examples in the spec/unit directory with
   # :type => :unit
@@ -2952,13 +2952,13 @@ 

-1895
-1896
-1897
-1898
+1898 +1899 +1900 +1901

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

-

Examples:

+

Examples:


 # It disables all monkey patching.
 RSpec.configure do |config|
@@ -3103,15 +3103,15 @@ 

-1868
-1869
-1870
 1871
 1872
-1873
+1873 +1874 +1875 +1876

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

-

Examples:

+

Examples:


 RSpec.configure do |rspec|
   rspec.expose_current_running_example_as :example
@@ -3404,17 +3404,17 @@ 

-1806
-1807
-1808
 1809
 1810
 1811
 1812
-1813
+1813 +1814 +1815 +1816

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

-

Examples:

+

Examples:


 module UiHelpers
   def run_in_browser
@@ -3548,14 +3548,14 @@ 

-1515
-1516
-1517
 1518
-1519
+1519 +1520 +1521 +1522

-
# File 'lib/rspec/core/configuration.rb', line 1515
+      
# File 'lib/rspec/core/configuration.rb', line 1518
 def extend(mod, *filters)
   define_mixed_in_module(mod, filters, @extend_modules, :extend) do |group|
     safe_extend(mod, group)
@@ -3586,7 +3586,7 @@ 

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.filter_gems_from_backtrace "rack", "rake"
 end
@@ -3637,7 +3637,7 @@

Note

-

Examples:

+

Examples:

# Given this declaration.
 describe "something", :foo => 'bar' do
   # ...
@@ -3694,7 +3694,7 @@ 

Note

-

Examples:

+

Examples:

# Given this declaration.
 describe "something", :foo => 'bar' do
   # ...
@@ -3781,7 +3781,7 @@ 

-

Examples:

+

Examples:

# This will strip the descriptions of both examples and example
 # groups.
 RSpec.configure do |config|
@@ -3792,12 +3792,12 @@ 

-1656
-1657
-1658
+1659 +1660 +1661

-
# File 'lib/rspec/core/configuration.rb', line 1656
+      
# File 'lib/rspec/core/configuration.rb', line 1659
 def format_docstrings(&block)
   @format_docstrings_block = block_given? ? block : DEFAULT_FORMATTER
 end
@@ -3996,7 +3996,7 @@

-

Examples:

+

Examples:


 module AuthenticationHelpers
   def (user)
@@ -4020,6 +4020,8 @@ 

config.include(PreferenceHelpers, :preferences) # included in examples with `:type => :request` metadata config.include(AuthenticationHelpers, :type => :request) + # included in examples where the `:type` metadata matches a proc condition + config.include(AuthenticationHelpers, :type => proc { |type, | [:request, :controller].include?(type) }) end describe "edit profile", :preferences, :type => :request do it "can be viewed by owning user" do @@ -4039,14 +4041,14 @@

-1425
-1426
-1427
 1428
-1429
+1429 +1430 +1431 +1432

-
# File 'lib/rspec/core/configuration.rb', line 1425
+      
# File 'lib/rspec/core/configuration.rb', line 1428
 def include(mod, *filters)
   define_mixed_in_module(mod, filters, @include_modules, :include) do |group|
     safe_include(mod, group)
@@ -4078,7 +4080,7 @@ 

-

Examples:

+

Examples:


 RSpec.shared_context "example admin user" do
   let(:admin_user) { create_user(:admin) }
@@ -4111,13 +4113,13 @@ 

-1472
-1473
-1474
-1475
+1475 +1476 +1477 +1478

-
# File 'lib/rspec/core/configuration.rb', line 1472
+      
# File 'lib/rspec/core/configuration.rb', line 1475
 def include_context(shared_group_name, *filters)
   shared_module = world.shared_example_group_registry.find([:main], shared_group_name)
   include shared_module, *filters
@@ -4374,12 +4376,12 @@ 

-2109
-2110
-2111
+2112 +2113 +2114

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

-2115 -2116 -2117

+2118 +2119 +2120
-
# File 'lib/rspec/core/configuration.rb', line 2115
+      
# File 'lib/rspec/core/configuration.rb', line 2118
 def on_example_group_definition_callbacks
   @on_example_group_definition_callbacks ||= []
 end
@@ -4437,10 +4439,10 @@

-1701
+1704

-
# File 'lib/rspec/core/configuration.rb', line 1701
+      
# File 'lib/rspec/core/configuration.rb', line 1704
 delegate_to_ordering_manager :order=
@@ -4460,7 +4462,7 @@

-

Examples:

+

Examples:


 module OverrideMod
   def override_me
@@ -4490,14 +4492,14 @@ 

-1554
-1555
-1556
 1557
-1558
+1558 +1559 +1560 +1561

-
# File 'lib/rspec/core/configuration.rb', line 1554
+      
# File 'lib/rspec/core/configuration.rb', line 1557
 def prepend(mod, *filters)
   define_mixed_in_module(mod, filters, @prepend_modules, :prepend) do |group|
     safe_prepend(mod, group)
@@ -4533,9 +4535,6 @@ 

-2001
-2002
-2003
 2004
 2005
 2006
@@ -4546,10 +4545,13 @@ 

2011 2012 2013 -2014

+2014 +2015 +2016 +2017

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

-

Examples:

+

Examples:


 RSpec.configure do |rspec|
   rspec.raise_errors_for_deprecations!
@@ -4590,12 +4592,12 @@ 

-1828
-1829
-1830
+1831 +1832 +1833

-
# File 'lib/rspec/core/configuration.rb', line 1828
+      
# File 'lib/rspec/core/configuration.rb', line 1831
 def raise_errors_for_deprecations!
   self.deprecation_stream = Formatters::DeprecationFormatter::RaiseErrorStream.new
 end
@@ -4615,7 +4617,7 @@

-

Examples:

+

Examples:


 RSpec.configure do |rspec|
   rspec.raise_on_warning = true
@@ -4625,16 +4627,16 @@ 

-1776
-1777
-1778
 1779
 1780
 1781
-1782
+1782 +1783 +1784 +1785

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

-

Examples:

+

Examples:

RSpec.configure do |rspec|
   rspec.register_ordering :reverse do |list|
     list.reverse
@@ -4730,10 +4732,10 @@ 

-1749
+1752

-
# File 'lib/rspec/core/configuration.rb', line 1749
+      
# File 'lib/rspec/core/configuration.rb', line 1752
 delegate_to_ordering_manager :register_ordering
@@ -4813,10 +4815,10 @@

-1691
+1694

-
# File 'lib/rspec/core/configuration.rb', line 1691
+      
# File 'lib/rspec/core/configuration.rb', line 1694
 delegate_to_ordering_manager :seed
@@ -4835,10 +4837,10 @@

-1677
+1680

-
# File 'lib/rspec/core/configuration.rb', line 1677
+      
# File 'lib/rspec/core/configuration.rb', line 1680
 delegate_to_ordering_manager :seed=
@@ -4896,12 +4898,12 @@

-1755
-1756
-1757
+1758 +1759 +1760

-
# File 'lib/rspec/core/configuration.rb', line 1755
+      
# File 'lib/rspec/core/configuration.rb', line 1758
 def warnings=(value)
   $VERBOSE = !!value
 end
@@ -4931,12 +4933,12 @@

-1760
-1761
-1762
+1763 +1764 +1765

-
# File 'lib/rspec/core/configuration.rb', line 1760
+      
# File 'lib/rspec/core/configuration.rb', line 1763
 def warnings?
   $VERBOSE
 end
@@ -4960,7 +4962,7 @@

-

Examples:

+

Examples:

RSpec.configure do |config|
   config.when_first_matching_example_defined(:db) do
     # Load a support file that does some heavyweight setup,
@@ -4974,9 +4976,6 @@ 

-1918
-1919
-1920
 1921
 1922
 1923
@@ -4989,10 +4988,13 @@ 

1930 1931 1932 -1933

+1933 +1934 +1935 +1936

-
# File 'lib/rspec/core/configuration.rb', line 1918
+      
# File 'lib/rspec/core/configuration.rb', line 1921
 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|
@@ -5012,9 +5014,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 2562e809c..81cc33b79 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.36 + — Documentation by YARD 0.9.37 @@ -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 2cb7cf5eb..cf189fb85 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.36 + — Documentation by YARD 0.9.37 @@ -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 a8e70c6a8..277f2584c 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.36 + — Documentation by YARD 0.9.37 @@ -83,7 +83,7 @@

Overview

-

Examples:

+

Examples:


 RSpec.configure do |config|
   config.before do |example|
@@ -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 ae441930f..9a073a379 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.36 + — Documentation by YARD 0.9.37 @@ -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 ea44b2b2b..6f79c7542 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.36 + — Documentation by YARD 0.9.37 @@ -75,7 +75,7 @@

Overview

-

Examples:

+

Examples:


 RSpec.configure do |c|
   c.around do |ex| # Procsy which wraps the example
@@ -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 158a52235..e7a6b8ffc 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.36 + — Documentation by YARD 0.9.37 @@ -412,7 +412,7 @@

-

Examples:

+

Examples:

example do
 end
 example "does something" do
@@ -543,7 +543,7 @@ 

-

Examples:

+

Examples:

fexample do
 end
 fexample "does something" do
@@ -678,7 +678,7 @@ 

-

Examples:

+

Examples:

fit do
 end
 fit "does something" do
@@ -813,7 +813,7 @@ 

-

Examples:

+

Examples:

focus do
 end
 focus "does something" do
@@ -948,7 +948,7 @@ 

-

Examples:

+

Examples:

fspecify do
 end
 fspecify "does something" do
@@ -1187,7 +1187,7 @@ 

-

Examples:

+

Examples:

it do
 end
 it "does something" do
@@ -1348,7 +1348,7 @@ 

-

Examples:

+

Examples:

pending do
 end
 pending "does something" do
@@ -1578,7 +1578,7 @@ 

-

Examples:

+

Examples:

skip do
 end
 skip "does something" do
@@ -1714,7 +1714,7 @@ 

-

Examples:

+

Examples:

RSpec.describe MyClass do
   specify "#do_something is deprecated" do
     # ...
@@ -1850,7 +1850,7 @@ 

-

Examples:

+

Examples:

xexample do
 end
 xexample "does something" do
@@ -1985,7 +1985,7 @@ 

-

Examples:

+

Examples:

xit do
 end
 xit "does something" do
@@ -2120,7 +2120,7 @@ 

-

Examples:

+

Examples:

xspecify do
 end
 xspecify "does something" do
@@ -2256,7 +2256,7 @@ 

-

Examples:

+

Examples:

RSpec.describe Thing do
   it "does something" do
     described_class == Thing
@@ -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 c2d297bb5..f87f546a7 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.36 + — Documentation by YARD 0.9.37 @@ -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 3b8091263..bde95f73b 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.36 + — Documentation by YARD 0.9.37 @@ -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 9275815e5..22feb9a12 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.36 + — Documentation by YARD 0.9.37 @@ -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 ea5db2f60..0a5b23dc4 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.36 + — Documentation by YARD 0.9.37 @@ -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 d18640660..94c44f58d 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.36 + — Documentation by YARD 0.9.37 @@ -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 ba4661261..939a6034f 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.36 + — Documentation by YARD 0.9.37 @@ -110,7 +110,7 @@

-

Examples:

+

Examples:

format_duration(1) #=>  "1 minute 1 second"
 format_duration(135.14) #=> "2 minutes 15.14 seconds"
@@ -194,7 +194,7 @@

-

Examples:

+

Examples:

format_seconds(0.000006) #=> "0.00001"
 format_seconds(0.020000) #=> "0.02"
 format_seconds(1.00000000001) #=> "1"
@@ -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 4a5145153..aa1aaa086 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.36 + — Documentation by YARD 0.9.37 @@ -171,7 +171,9 @@

94 95 96 -97 +97 +98 +99
# File 'lib/rspec/core/formatters/html_snippet_extractor.rb', line 84
@@ -187,8 +189,10 @@ 

"# Couldn't get snippet for #{file}" end rescue SecurityError - "# Couldn't get snippet for #{file}" -end

+ # :nocov: - SecurityError is no longer produced starting in ruby 2.7 + "# Couldn't get snippet for #{file}" + # :nocov: +end @@ -238,18 +242,18 @@

-108
-109
 110
 111
 112
 113
 114
 115
-116
+116 +117 +118 -
# File 'lib/rspec/core/formatters/html_snippet_extractor.rb', line 108
+      
# File 'lib/rspec/core/formatters/html_snippet_extractor.rb', line 110
 def post_process(highlighted, offending_line)
   new_lines = []
   highlighted.split("\n").each_with_index do |line, i|
@@ -390,9 +394,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 6dfd80941..d2e60adaa 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.36 + — Documentation by YARD 0.9.37 @@ -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 40c5df171..9067d18f0 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.36 + — Documentation by YARD 0.9.37 @@ -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 6d80d5b22..ca93ef9dc 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.36 + — Documentation by YARD 0.9.37 @@ -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 9dde086d6..fbe941c75 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.36 + — Documentation by YARD 0.9.37 @@ -569,9 +569,9 @@

other frameworks

-

Examples:

-

before(:example) declared in an ExampleGroup

-

+

Examples:

+

before(:example) declared in an ExampleGroup

+

 RSpec.describe Thing do
   before(:example) do
@@ -581,8 +581,8 @@ 

other frameworks

# Here you can access @thing. end end
-

before(:context) declared in an ExampleGroup

-

+

before(:context) declared in an ExampleGroup

+

 RSpec.describe Parser do
   before(:context) do
@@ -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 ff4d51cec..40e4cc43f 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.36 + — Documentation by YARD 0.9.37 @@ -119,7 +119,7 @@

-

Examples:

+

Examples:


 describe [1, 2, 3] do
   it { is_expected.to be_an Array }
@@ -172,7 +172,7 @@ 

-

Examples:

+

Examples:


 RSpec.describe Person do
   it { should be_eligible_to_vote }
@@ -224,7 +224,7 @@ 

-

Examples:

+

Examples:


 RSpec.describe Person do
   it { should_not be_eligible_to_vote }
@@ -286,7 +286,7 @@ 

-

Examples:

+

Examples:


 # Explicit declaration of subject.
 RSpec.describe Person do
@@ -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 3add9bbb7..087aba74c 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.36 + — Documentation by YARD 0.9.37 @@ -133,7 +133,7 @@

-

Examples:

+

Examples:


 RSpec.describe Thing do
   let(:thing) { Thing.new }
@@ -243,7 +243,7 @@ 

-

Examples:

+

Examples:


 class Thing
   def self.count
@@ -327,7 +327,7 @@ 

-

Examples:

+

Examples:


 RSpec.describe CheckingAccount, "with $50" do
   subject { CheckingAccount.new(Money.new(50, :USD)) }
@@ -413,7 +413,7 @@ 

-

Examples:

+

Examples:


 class Thing
   def self.count
@@ -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 6c38461c9..082eac4d9 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.36 + — Documentation by YARD 0.9.37 @@ -157,7 +157,7 @@

return nil if line == '-e:1'.freeze line rescue SecurityError - # :nocov: + # :nocov: - SecurityError is no longer produced starting in ruby 2.7 nil # :nocov: end

@@ -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 5abc8a6da..b6e2b9152 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.36 + — Documentation by YARD 0.9.37 @@ -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 9c3960f58..a30ab431a 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.36 + — Documentation by YARD 0.9.37 @@ -174,20 +174,20 @@

-513
-514
-515
-516
-517
-518
 519
 520
 521
 522
-523
+523 +524 +525 +526 +527 +528 +529

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 513
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 519
 def initialize(*exceptions)
   super()
   @failures                = []
@@ -229,12 +229,12 @@ 

-510
-511
-512
+516 +517 +518

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 510
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 516
 def aggregation_block_label
   @aggregation_block_label
 end
@@ -265,12 +265,12 @@

-506
-507
-508
+512 +513 +514

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 506
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 512
 def 
   @aggregation_metadata
 end
@@ -301,12 +301,12 @@

-503
-504
-505
+509 +510 +511

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 503
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 509
 def all_exceptions
   @all_exceptions
 end
@@ -337,12 +337,12 @@

-497
-498
-499
+503 +504 +505

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 497
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 503
 def failures
   @failures
 end
@@ -373,12 +373,12 @@

-500
-501
-502
+506 +507 +508

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 500
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 506
 def other_errors
   @other_errors
 end
@@ -402,15 +402,15 @@

-538
-539
-540
-541
-542
-543
+544 +545 +546 +547 +548 +549

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 538
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 544
 def exception_count_description
   failure_count = Formatters::Helpers.pluralize(failures.size, "failure")
   return failure_count if other_errors.empty?
@@ -449,12 +449,12 @@ 

-528
-529
-530
+534 +535 +536

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 528
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 534
 def message
   all_exceptions.map(&:message).join("\n\n")
 end
@@ -484,12 +484,12 @@

-533
-534
-535
+539 +540 +541

-
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 533
+      
# File 'lib/rspec/core/formatters/exception_presenter.rb', line 539
 def summary
   "Got #{exception_count_description}"
 end
@@ -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 4c36e6547..5c0cd745d 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.36 + — Documentation by YARD 0.9.37 @@ -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 28108c163..e9dfe3a96 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.36 + — Documentation by YARD 0.9.37 @@ -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 3635b172f..4cd476aa7 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.36 + — Documentation by YARD 0.9.37 @@ -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 43f3d28e5..0f94268d7 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.36 + — Documentation by YARD 0.9.37 @@ -72,7 +72,7 @@

Overview

-

Examples:

+

Examples:

def example_started(notification)
   puts "Hey I started #{notification.example.description}"
 end
@@ -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 57ff39c5f..867c92b39 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.36 + — Documentation by YARD 0.9.37 @@ -68,7 +68,7 @@

Overview

-

Examples:

+

Examples:

def stop(notification)
   puts "Hey I ran #{notification.examples.size}"
 end
@@ -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 eef1b1ea9..4f267e971 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.36 + — Documentation by YARD 0.9.37 @@ -71,7 +71,7 @@

Overview

-

Examples:

+

Examples:

def example_failed(notification)
   puts "Hey I failed :("
   puts "Here's my stack trace"
@@ -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 f7d253d93..ccc530d8a 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.36 + — Documentation by YARD 0.9.37 @@ -71,7 +71,7 @@

Overview

-

Examples:

+

Examples:

def example_group_started(notification)
   puts "Hey I started #{notification.group.description}"
 end
@@ -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 952f40d58..1649aee64 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.36 + — Documentation by YARD 0.9.37 @@ -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 aedbd6438..c4c6a3375 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.36 + — Documentation by YARD 0.9.37 @@ -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 4aced21fe..1f0b95869 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.36 + — Documentation by YARD 0.9.37 @@ -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 a742e31be..de3aa4c77 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.36 + — Documentation by YARD 0.9.37 @@ -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 a0a3fc5d3..28625f282 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.36 + — Documentation by YARD 0.9.37 @@ -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 2fcbc6f61..833968256 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.36 + — Documentation by YARD 0.9.37 @@ -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 71b610ef2..d393e9250 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.36 + — Documentation by YARD 0.9.37 @@ -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 2e97f9a8c..eac18e38b 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.36 + — Documentation by YARD 0.9.37 @@ -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 5ff207cb3..27f9d3941 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.36 + — Documentation by YARD 0.9.37 @@ -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 bfade3703..afeb2dff2 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.36 + — Documentation by YARD 0.9.37 @@ -110,7 +110,7 @@

-

Examples:

+

Examples:

describe "some behaviour" do
   # reported as "Pending: no reason given"
   it "is pending with no message" do
@@ -212,7 +212,7 @@ 

-

Examples:

+

Examples:

describe "an example" do
   # reported as "Pending: no reason given"
   it "is skipped with no message" do
@@ -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 de42fd858..772960c48 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.36 + — Documentation by YARD 0.9.37 @@ -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 5be03eee5..fb1826e5c 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.36 + — Documentation by YARD 0.9.37 @@ -204,8 +204,6 @@

-77
-78
 79
 80
 81
@@ -214,10 +212,12 @@ 

84 85 86 -87

+87 +88 +89

-
# File 'lib/rspec/core/rake_task.rb', line 77
+      
# File 'lib/rspec/core/rake_task.rb', line 79
 def initialize(*args, &task_block)
   @name          = args.shift || :spec
   @ruby_opts     = nil
@@ -387,12 +387,12 @@ 

-75
-76
-77
+77 +78 +79

-
# File 'lib/rspec/core/rake_task.rb', line 75
+      
# File 'lib/rspec/core/rake_task.rb', line 77
 def rspec_opts
   @rspec_opts
 end
@@ -415,12 +415,12 @@

-72
-73
-74
+74 +75 +76

-
# File 'lib/rspec/core/rake_task.rb', line 72
+      
# File 'lib/rspec/core/rake_task.rb', line 74
 def rspec_path
   @rspec_path
 end
@@ -442,12 +442,12 @@

-68
-69
-70
+70 +71 +72

-
# File 'lib/rspec/core/rake_task.rb', line 68
+      
# File 'lib/rspec/core/rake_task.rb', line 70
 def ruby_opts
   @ruby_opts
 end
@@ -470,12 +470,12 @@

-65
-66
-67
+67 +68 +69

-
# File 'lib/rspec/core/rake_task.rb', line 65
+      
# File 'lib/rspec/core/rake_task.rb', line 67
 def verbose
   @verbose
 end
@@ -497,12 +497,12 @@

-55
 56
-57
+57 +58

-
# File 'lib/rspec/core/rake_task.rb', line 55
+      
# File 'lib/rspec/core/rake_task.rb', line 56
 def with_clean_environment
   false
 end
@@ -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 5dcbad8a9..043258251 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.36 + — Documentation by YARD 0.9.37 @@ -359,7 +359,7 @@

-

Examples:

+

Examples:


 reporter.report(group.examples.size) do |r|
   example_groups.map {|g| g.run(r) }
@@ -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 2b4533f73..a5088f1cc 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.36 + — Documentation by YARD 0.9.37 @@ -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 51eb4c484..beefc6777 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.36 + — Documentation by YARD 0.9.37 @@ -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 d628d8058..dae803dab 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.36 + — Documentation by YARD 0.9.37 @@ -57,7 +57,7 @@

Overview

-

Examples:

+

Examples:


 module LoggedInAsAdmin
   extend RSpec::Core::SharedContext
@@ -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 447d8f207..3ebe0b241 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.36 + — Documentation by YARD 0.9.37 @@ -105,7 +105,7 @@

-

Examples:

+

Examples:

shared_examples "auditable" do
   it "stores an audit record on save!" do
     expect { auditable.save! }.to change(Audit, :count).by(1)
@@ -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 599902622..430005039 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.36 + — Documentation by YARD 0.9.37 @@ -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 2596f9ce1..7ee8684b1 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.36 + — Documentation by YARD 0.9.37 @@ -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 8d4fc26f6..87cf125f2 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.36 + — Documentation by YARD 0.9.37 @@ -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 08beced39..ed518a759 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.36 + — Documentation by YARD 0.9.37 @@ -74,9 +74,9 @@

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 b7cc9dd05..9b9e470c1 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.36 + — Documentation by YARD 0.9.37 @@ -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 f56a7238f..bd0acd931 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.36 + Documentation by YARD 0.9.37 @@ -36,7 +36,7 @@
-

Documentation by YARD 0.9.36

+

Documentation by YARD 0.9.37

Alphabetic Index

File Listing

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

Namespace Listing A-Z

diff --git a/source/documentation/3.13/rspec-core/class_list.html b/source/documentation/3.13/rspec-core/class_list.html index e0c3e5523..42804578d 100644 --- a/source/documentation/3.13/rspec-core/class_list.html +++ b/source/documentation/3.13/rspec-core/class_list.html @@ -1,5 +1,5 @@ - + @@ -25,11 +25,14 @@

Class List

Files - + diff --git a/source/documentation/3.13/rspec-core/css/full_list.css b/source/documentation/3.13/rspec-core/css/full_list.css index fa3598242..6eef5e4a0 100644 --- a/source/documentation/3.13/rspec-core/css/full_list.css +++ b/source/documentation/3.13/rspec-core/css/full_list.css @@ -20,8 +20,8 @@ h1 { padding: 12px 10px; padding-bottom: 0; margin: 0; font-size: 1.4em; } #content.insearch #noresults { margin-left: 7px; } li.collapsed ul { display: none; } li a.toggle { cursor: default; position: relative; left: -5px; top: 4px; text-indent: -999px; width: 10px; height: 9px; margin-left: -10px; display: block; float: left; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTM5jWRgMAAAAVdEVYdENyZWF0aW9uIFRpbWUAMy8xNC8wOeNZPpQAAAE2SURBVDiNrZTBccIwEEXfelIAHUA6CZ24BGaWO+FuzZAK4k6gg5QAdGAq+Bxs2Yqx7BzyL7Llp/VfzZeQhCTc/ezuGzKKnKSzpCxXJM8fwNXda3df5RZETlIt6YUzSQDs93sl8w3wBZxCCE10GM1OcWbWjB2mWgEH4Mfdyxm3PSepBHibgQE2wLe7r4HjEidpnXMYdQPKEMJcsZ4zs2POYQOcaPfwMVOo58zsAdMt18BuoVDPxUJRacELbXv3hUIX2vYmOUvi8C8ydz/ThjXrqKqqLbDIAdsCKBd+Wo7GWa7o9qzOQHVVVXeAbs+yHHCH4aTsaCOQqunmUy1yBUAXkdMIfMlgF5EXLo2OpV/c/Up7jG4hhHcYLgWzAZXUc2b2ixsfvc/RmNNfOXD3Q/oeL9axJE1yT9IOoUu6MGUkAAAAAElFTkSuQmCC) no-repeat bottom left; } -li.collapsed a.toggle { opacity: 0.5; cursor: default; background-position: top left; } -li { color: #888; cursor: pointer; } +li.collapsed a.toggle { cursor: default; background-position: top left; } +li { color: #666; cursor: pointer; } li.deprecated { text-decoration: line-through; font-style: italic; } li.odd { background: #f0f0f0; } li.even { background: #fafafa; } @@ -47,7 +47,7 @@ li small { display: block; font-size: 0.8em; } li small:before { content: ""; } li small:after { content: ""; } li small.search_info { display: none; } -#search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #888; padding-left: 0; padding-right: 24px; } +#search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #666; padding-left: 0; padding-right: 24px; } #content.insearch #search { background-position: center right; } #search input { width: 110px; } diff --git a/source/documentation/3.13/rspec-core/css/style.css b/source/documentation/3.13/rspec-core/css/style.css index eb0dbc86f..f169a6518 100644 --- a/source/documentation/3.13/rspec-core/css/style.css +++ b/source/documentation/3.13/rspec-core/css/style.css @@ -82,6 +82,11 @@ body { #search { display: none; } } +@media (max-width: 320px) { + body { height: 100%; overflow: hidden; overflow-wrap: break-word; } + #main { height: 100%; overflow: auto; } +} + #main img { max-width: 100%; } h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; } h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; } @@ -106,6 +111,7 @@ h2 small a { position: relative; padding: 2px 7px; } +a { font-weight: 550; } .clear { clear: both; } .inline { display: inline; } .inline p:first-child { display: inline; } diff --git a/source/documentation/3.13/rspec-core/file.Changelog.html b/source/documentation/3.13/rspec-core/file.Changelog.html index 12cc57087..9bbaad14a 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.36 + — Documentation by YARD 0.9.37 @@ -2372,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 4c6f21912..c5b05f85c 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.36 + — Documentation by YARD 0.9.37 @@ -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 41743944b..ad000ef9c 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.36 + — Documentation by YARD 0.9.37 @@ -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 d1ed6b583..9b91a5917 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.36 + — Documentation by YARD 0.9.37 @@ -326,9 +326,9 @@

Also see

diff --git a/source/documentation/3.13/rspec-core/file_list.html b/source/documentation/3.13/rspec-core/file_list.html index b120c6bd4..e9fbaa724 100644 --- a/source/documentation/3.13/rspec-core/file_list.html +++ b/source/documentation/3.13/rspec-core/file_list.html @@ -1,5 +1,5 @@ - + @@ -25,7 +25,10 @@

File List

Files - +
  • diff --git a/source/documentation/3.13/rspec-core/frames.html b/source/documentation/3.13/rspec-core/frames.html index 53734c221..6586005fd 100644 --- a/source/documentation/3.13/rspec-core/frames.html +++ b/source/documentation/3.13/rspec-core/frames.html @@ -2,7 +2,7 @@ - Documentation by YARD 0.9.36 + Documentation by YARD 0.9.37