rentdynamics 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.bundle/config +2 -0
 - data/.bundle/ruby/2.6.0/bin/htmldiff +29 -0
 - data/.bundle/ruby/2.6.0/bin/ldiff +29 -0
 - data/.bundle/ruby/2.6.0/bin/rake +27 -0
 - data/.bundle/ruby/2.6.0/bin/rspec +27 -0
 - data/.bundle/ruby/2.6.0/cache/diff-lcs-1.3.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rake-12.3.3.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rspec-3.9.0.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rspec-core-3.9.2.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rspec-expectations-3.9.2.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rspec-mocks-3.9.1.gem +0 -0
 - data/.bundle/ruby/2.6.0/cache/rspec-support-3.9.3.gem +0 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/.rspec +1 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/Contributing.md +83 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/History.md +220 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/License.md +39 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/Manifest.txt +37 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/README.rdoc +84 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/Rakefile +57 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin/htmldiff +32 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin/ldiff +6 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
 - data/.bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/CONTRIBUTING.rdoc +43 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/Gemfile +3 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/History.rdoc +2344 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/MIT-LICENSE +21 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/README.rdoc +156 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/Rakefile +41 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/azure-pipelines.yml +11 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/bundle +105 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/console +7 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rake +29 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rdoc +29 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rubocop +29 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/bin/setup +6 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/command_line_usage.rdoc +158 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/Rakefile1 +38 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/Rakefile2 +35 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/a.c +6 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/b.c +6 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/main.c +11 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/glossary.rdoc +42 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/jamis.rb +592 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/proto_rake.rdoc +127 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rake.1 +156 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rakefile.rdoc +622 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rational.rdoc +151 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/exe/rake +27 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake.rb +71 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/application.rb +824 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/backtrace.rb +24 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/clean.rb +78 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/cloneable.rb +17 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/cpu_counter.rb +107 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/default_loader.rb +15 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/dsl_definition.rb +195 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/early_time.rb +22 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/ext/core.rb +26 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/ext/string.rb +176 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_creation_task.rb +25 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_list.rb +435 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_task.rb +54 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_utils.rb +137 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_utils_ext.rb +145 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/invocation_chain.rb +57 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb +17 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/late_time.rb +18 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/linked_list.rb +112 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/loaders/makefile.rb +54 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/name_space.rb +38 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/packagetask.rb +207 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/phony.rb +16 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/private_reader.rb +21 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/promise.rb +100 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/pseudo_status.rb +30 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rake_module.rb +67 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/scope.rb +43 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task.rb +413 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_argument_error.rb +8 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_arguments.rb +109 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_manager.rb +324 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/tasklib.rb +12 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/testtask.rb +224 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/thread_history_display.rb +49 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/thread_pool.rb +163 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/trace_output.rb +23 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/version.rb +10 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/win32.rb +51 -0
 - data/.bundle/ruby/2.6.0/gems/rake-12.3.3/rake.gemspec +42 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-3.9.0/LICENSE.md +27 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-3.9.0/README.md +43 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec.rb +3 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/.document +5 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/.yardopts +8 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/Changelog.md +2291 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/LICENSE.md +26 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/README.md +384 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/exe/rspec +4 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/autorun.rb +3 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core.rb +186 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/backtrace_formatter.rb +65 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/coordinator.rb +62 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/example_minimizer.rb +173 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/fork_runner.rb +135 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/server.rb +61 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_command.rb +126 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_runner.rb +73 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/utilities.rb +58 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration.rb +2363 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration_options.rb +233 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/did_you_mean.rb +46 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/drb.rb +113 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/dsl.rb +98 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example.rb +656 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example_group.rb +900 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example_status_persister.rb +235 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/filter_manager.rb +231 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/flat_map.rb +20 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters.rb +273 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/console_codes.rb +68 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/exception_presenter.rb +511 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/helpers.rb +110 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_formatter.rb +153 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_printer.rb +414 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/json_formatter.rb +102 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/progress_formatter.rb +29 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/protocol.rb +182 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/hooks.rb +641 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/invocations.rb +87 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/memoized_helpers.rb +554 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/metadata.rb +498 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/metadata_filter.rb +255 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/notifications.rb +521 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/option_parser.rb +316 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/ordering.rb +158 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/output_wrapper.rb +29 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/pending.rb +165 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/profiler.rb +34 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer.rb +48 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/.rspec +1 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/rake_task.rb +188 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/reporter.rb +265 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/ruby_project.rb +53 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/runner.rb +204 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/sandbox.rb +37 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/set.rb +54 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/shared_context.rb +55 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/shared_example_group.rb +271 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/shell_escape.rb +49 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/version.rb +9 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/warnings.rb +40 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/world.rb +276 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/.document +5 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/.yardopts +6 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/Changelog.md +1191 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/LICENSE.md +25 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/README.md +320 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations.rb +82 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/configuration.rb +215 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/expectation_target.rb +127 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/fail_with.rb +39 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/failure_aggregator.rb +194 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/handler.rb +170 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/minitest_integration.rb +58 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/syntax.rb +132 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/version.rb +8 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers.rb +1038 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/aliased_matcher.rb +116 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in.rb +52 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/all.rb +86 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be.rb +288 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_between.rb +77 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_within.rb +72 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/change.rb +428 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/compound.rb +276 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/cover.rb +24 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/eq.rb +40 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/eql.rb +34 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/equal.rb +81 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/exist.rb +90 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/has.rb +103 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/include.rb +149 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/match.rb +106 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/operators.rb +128 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/output.rb +200 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/raise_error.rb +230 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/respond_to.rb +199 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/satisfy.rb +60 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/yield.rb +441 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/composable.rb +171 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/dsl.rb +540 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/english_phrasing.rb +58 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/fail_matchers.rb +42 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/generated_descriptions.rb +41 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/matcher_delegator.rb +35 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/matcher_protocol.rb +99 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/.document +5 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/.yardopts +6 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/README.md +463 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/Changelog.md +302 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/LICENSE.md +23 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/README.md +40 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support.rb +149 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/caller_filter.rb +83 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/comparable_version.rb +46 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/differ.rb +215 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/directory_maker.rb +63 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/encoded_string.rb +161 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/fuzzy_matcher.rb +48 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/hunk_generator.rb +47 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/matcher_definition.rb +42 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/method_signature_verifier.rb +438 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/mutex.rb +73 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/object_formatter.rb +275 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/recursive_const_methods.rb +76 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/reentrant_mutex.rb +61 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/ruby_features.rb +190 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source.rb +75 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source/location.rb +21 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source/node.rb +110 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source/token.rb +87 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec.rb +81 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/formatting_support.rb +9 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/in_sub_process.rb +69 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/library_wide_checks.rb +150 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/shell_out.rb +89 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/stderr_splitter.rb +75 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/string_matcher.rb +46 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/version.rb +7 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/warnings.rb +39 -0
 - data/.bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/with_keywords_when_needed.rb +33 -0
 - data/.bundle/ruby/2.6.0/specifications/diff-lcs-1.3.gemspec +61 -0
 - data/.bundle/ruby/2.6.0/specifications/rake-12.3.3.gemspec +49 -0
 - data/.bundle/ruby/2.6.0/specifications/rspec-3.9.0.gemspec +43 -0
 - data/.bundle/ruby/2.6.0/specifications/rspec-core-3.9.2.gemspec +63 -0
 - data/.bundle/ruby/2.6.0/specifications/rspec-expectations-3.9.2.gemspec +51 -0
 - data/.bundle/ruby/2.6.0/specifications/rspec-mocks-3.9.1.gemspec +51 -0
 - data/.bundle/ruby/2.6.0/specifications/rspec-support-3.9.3.gemspec +39 -0
 - data/.gems/bin/htmldiff +27 -0
 - data/.gems/bin/ldiff +27 -0
 - data/.gems/bin/rake +27 -0
 - data/.gems/bin/rspec +27 -0
 - data/.gems/cache/diff-lcs-1.3.gem +0 -0
 - data/.gems/cache/rake-13.0.1.gem +0 -0
 - data/.gems/cache/rspec-3.9.0.gem +0 -0
 - data/.gems/cache/rspec-core-3.9.2.gem +0 -0
 - data/.gems/cache/rspec-expectations-3.9.1.gem +0 -0
 - data/.gems/cache/rspec-mocks-3.9.1.gem +0 -0
 - data/.gems/cache/rspec-support-3.9.3.gem +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Array/cdesc-Array.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/analyze_patchset-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/cdesc-Internals.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/intuit_diff_direction-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/inverse_vector-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/lcs-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/position_hash-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Internals/replace_next_larger-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/LCS/Ldiff/cdesc-Ldiff.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/Diff/cdesc-Diff.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/BalancedCallbacks/cdesc-BalancedCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/BalancedCallbacks/change-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/BalancedCallbacks/discard_a-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/BalancedCallbacks/discard_b-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/BalancedCallbacks/match-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/cdesc-Block.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/changes-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/diff_size-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/insert-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/op-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Block/remove-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/%3c%3d%3e-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/%3d%3d-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/action-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/adding%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/cdesc-Change.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/changed%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/deleting%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/element-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/finished_a%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/finished_b%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/from_a-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/inspect-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/position-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/to_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/unchanged%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Change/valid_action%3f-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/%3c%3d%3e-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/%3d%3d-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/cdesc-ContextChange.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/from_a-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/inspect-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/new_element-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/new_position-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/old_element-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/old_position-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/simplify-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextChange/to_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextDiffCallbacks/cdesc-ContextDiffCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextDiffCallbacks/change-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextDiffCallbacks/discard_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/ContextDiffCallbacks/discard_b-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DefaultCallbacks/cdesc-DefaultCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DefaultCallbacks/change-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DefaultCallbacks/discard_a-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DefaultCallbacks/discard_b-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DefaultCallbacks/match-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/cdesc-DiffCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/diffs-i.ri +3 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/discard_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/discard_b-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/finish-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/finish_hunk-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/match-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/DiffCallbacks/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/cdesc-Callbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/discard_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/discard_b-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/htmlize-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/match-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/match_class-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/only_a_class-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/only_b_class-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/Callbacks/output-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/cdesc-HTMLDiff.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/options-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/run-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/HTMLDiff/verify_options-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/blocks-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/cdesc-Hunk.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/context_diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/context_range-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/ed_diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/encode-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/encode_as-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/end_new-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/end_old-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/file_length_difference-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/flag_context-i.ri +2 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/merge-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/old_diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/overlaps%3f-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/start_new-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/start_old-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/unified_diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/unified_range-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Hunk/unshift-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Internals/cdesc-Internals.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/LCS-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/Ldiff/cdesc-Ldiff.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/cdesc-SDiffCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/change-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/diffs-i.ri +3 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/discard_a-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/discard_b-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/match-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SDiffCallbacks/new-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SequenceCallbacks/cdesc-SequenceCallbacks.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SequenceCallbacks/change-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SequenceCallbacks/discard_a-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SequenceCallbacks/discard_b-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/SequenceCallbacks/match-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/callbacks_for-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/cdesc-LCS.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/diff-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/diff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/diff_traversal-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/lcs-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/patch%21-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/patch%21-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/patch-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/patch-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/patch_me-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/sdiff-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/sdiff-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/traverse_balanced-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/traverse_balanced-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/traverse_sequences-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/traverse_sequences-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/unpatch%21-c.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/unpatch%21-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/unpatch-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/LCS/unpatch_me-i.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/String/cdesc-String.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/cache.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/docs/page-COPYING_txt.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/docs/page-artistic_txt.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-Code-of-Conduct_md.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-Contributing_md.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-History_md.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-License_md.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-Manifest_txt.ri +0 -0
 - data/.gems/doc/diff-lcs-1.3/ri/page-README_rdoc.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/FileUtils/cdesc-FileUtils.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/FileUtils/ruby-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/FileUtils/safe_ln-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/FileUtils/sh-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/FileUtils/split_all-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Module/cdesc-Module.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Object/cdesc-Object.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/add_loader-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/cdesc-Application.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/init-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/load_rakefile-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/name-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/options-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/original_dir-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/rakefile-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/run-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/run_with_threads-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/terminal_columns-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/top_level-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/top_level_tasks-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Application/tty_output-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Backtrace/cdesc-Backtrace.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Cleaner/cdesc-Cleaner.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Cloneable/cdesc-Cloneable.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/CpuCounter/cdesc-CpuCounter.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/cdesc-DSL.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/desc-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/directory-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/file_create-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/import-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/multitask-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/namespace-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/rule-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DSL/task-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DefaultLoader/cdesc-DefaultLoader.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/DefaultLoader/load-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/EarlyTime/%3c%3d%3e-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/EarlyTime/cdesc-EarlyTime.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileCreationTask/cdesc-FileCreationTask.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileCreationTask/needed%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileCreationTask/timestamp-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/%2a-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/%3c%3c-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/%3d%3d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/%5b%5d-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/add-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/add_matching-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/cdesc-FileList.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/clear_exclude-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/egrep-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/exclude-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/excluded_from_list%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/existing%21-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/existing-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/ext-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/glob-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/gsub%21-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/gsub-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/include-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/is_a%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/kind_of%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/pathmap-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/resolve-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/sub%21-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/sub-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/to_a-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/to_ary-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileList/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileTask/cdesc-FileTask.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileTask/needed%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileTask/out_of_date%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileTask/scope_name-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileTask/timestamp-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/cdesc-FileUtilsExt.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/nowrite-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/nowrite_flag-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/rake_check_options-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/rake_output_message-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/verbose-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/verbose_flag-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/FileUtilsExt/when_writing-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/EmptyInvocationChain/append-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/EmptyInvocationChain/cdesc-EmptyInvocationChain.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/EmptyInvocationChain/member%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/EmptyInvocationChain/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/append-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/append-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/cdesc-InvocationChain.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/member%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/prefix-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationChain/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationExceptionMixin/cdesc-InvocationExceptionMixin.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationExceptionMixin/chain%3d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/InvocationExceptionMixin/chain-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LateTime/%3c%3d%3e-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LateTime/cdesc-LateTime.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LateTime/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/%3d%3d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/EmptyLinkedList/cdesc-EmptyLinkedList.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/EmptyLinkedList/cons-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/EmptyLinkedList/empty%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/EmptyLinkedList/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/cdesc-LinkedList.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/conj-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/cons-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/each-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/empty%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/empty-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/head-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/inspect-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/make-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/tail-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/LinkedList/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/MakefileLoader/cdesc-MakefileLoader.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/MultiTask/cdesc-MultiTask.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/NameSpace/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/NameSpace/cdesc-NameSpace.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/NameSpace/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/NameSpace/scope-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/NameSpace/tasks-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/cdesc-PackageTask.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/define-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/init-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/name-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/need_tar-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/need_tar_bz2-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/need_tar_gz-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/need_tar_xz-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/need_zip-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/package_dir-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/package_dir_path-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/package_files-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/package_name-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/tar_bz2_file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/tar_command-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/tar_gz_file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/tar_xz_file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/target_dir-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/tgz_file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/version-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/without_parent_dir-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/working_dir-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/zip_command-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PackageTask/zip_file-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PrivateReader/ClassMethods/cdesc-ClassMethods.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PrivateReader/cdesc-PrivateReader.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Promise/cdesc-Promise.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/PseudoStatus/cdesc-PseudoStatus.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/cdesc-RakeFileUtils.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/nowrite-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/nowrite_flag-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/rake_check_options-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/rake_output_message-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/verbose-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/verbose_flag-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RakeFileUtils/when_writing-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RuleRecursionOverflowError/add_target-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RuleRecursionOverflowError/cdesc-RuleRecursionOverflowError.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RuleRecursionOverflowError/message-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/RuleRecursionOverflowError/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Scope/EmptyScope/cdesc-EmptyScope.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Scope/cdesc-Scope.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/%5b%5d-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/%7c-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/actions-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/add_description-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/all_prerequisite_tasks-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/already_invoked-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/application-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/arg_names-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/cdesc-Task.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear_actions-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear_args-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear_comments-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/clear_prerequisites-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/comment-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/create_rule-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/define_task-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/enhance-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/execute-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/first_sentence-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/format_deps-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/format_trace_flags-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/full_comment-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/investigation-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/invoke-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/invoke_with_call_chain-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/locations-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/name-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/needed%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/order_only_prerequisites-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/prereqs-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/prerequisite_tasks-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/prerequisites-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/reenable-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/scope-i.ri +3 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/scope_name-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/set_arg_names-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/source-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/sources-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/task_defined%3f-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/tasks-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/timestamp-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/to_s-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Task/transform_comments-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArgumentError/cdesc-TaskArgumentError.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/cdesc-TaskArguments.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/each-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/extras-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/fetch-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/has_key%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/key%3f-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/method_missing-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/names-i.ri +3 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/new_scope-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/to_a-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/to_hash-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/values_at-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskArguments/with_defaults-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskLib/cdesc-TaskLib.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/add_location-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/attempt_rule-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/cdesc-TaskManager.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/clear-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/current_scope-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/enhance_with_matching_rule-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/find_location-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/generate_did_you_mean_suggestions-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/generate_message_for_undefined_task-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/generate_name-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/get_description-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/in_namespace-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/intern-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/last_description-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/lookup-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/lookup_in_scope-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/make_sources-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/resolve_args-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/resolve_args_without_dependencies-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/tasks-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TaskManager/tasks_in_scope-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/cdesc-TestTask.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/define-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/deps-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/description-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/libs-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/loader-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/name-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/new-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/options-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/pattern-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/ruby_opts-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/test_files%3d-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/verbose-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TestTask/warning-i.ri +2 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/ThreadHistoryDisplay/cdesc-ThreadHistoryDisplay.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/ThreadPool/cdesc-ThreadPool.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/TraceOutput/cdesc-TraceOutput.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Win32/Win32HomeError/cdesc-Win32HomeError.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/Win32/cdesc-Win32.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/add_rakelib-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/application%3d-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/application-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/cdesc-Rake.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/load_rakefile-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/original_dir-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/Rake/with_application-c.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/cdesc-String.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/ext-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/pathmap-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/pathmap_explode-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/pathmap_partial-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/String/pathmap_replace-i.ri +0 -0
 - data/.gems/doc/rake-13.0.1/ri/cache.ri +0 -0
 - data/.gems/doc/rspec-3.9.0/ri/RSpec/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rspec-3.9.0/ri/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-3.9.0/ri/cache.ri +0 -0
 - data/.gems/doc/rspec-3.9.0/ri/page-README_md.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/Object/cdesc-Object.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/AnonymousExampleGroup/cdesc-AnonymousExampleGroup.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/AnonymousExampleGroup/metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/backtrace_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/cdesc-BacktraceFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/exclude%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/exclusion_patterns-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/filter_gem-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/format_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/full_backtrace%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/full_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/inclusion_patterns-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/BacktraceFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/BisectFailedError/cdesc-BisectFailedError.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/BisectFailedError/for_failed_spec_run-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Channel/cdesc-Channel.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Channel/close-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Channel/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Channel/receive-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Channel/send-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/bisect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/bisect_with-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/cdesc-Coordinator.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/gracefully_abort_on_sigint-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Coordinator/start_bisect_runner-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/abort_if_ordering_inconsistent-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/all_example_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/bisect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/bisect_over-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/cdesc-ExampleMinimizer.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/currently_needed_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/example_range-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/failed_example_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/find_minimal_repro-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/get_expected_failures_for%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/non_failing_example_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/notify-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/prep-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/remaining_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/repro_command_for_currently_needed_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/runner-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/shell_command-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ExampleMinimizer/track_duration-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/CaptureFormatter/cdesc-CaptureFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/CaptureFormatter/notify_results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/CaptureFormatter/results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/RunDispatcher/cdesc-RunDispatcher.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/RunDispatcher/dispatch_specs-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/RunDispatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/RunDispatcher/run_specs-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/cdesc-ForkRunner.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/dispatch_run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/original_results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/shutdown-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ForkRunner/start-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Notifier/cdesc-Notifier.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Notifier/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Notifier/publish-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/capture_run_results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/cdesc-Server.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/drb_port-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/expected_failures-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/files_or_directories_to_run-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/latest_run_results-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/run-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/Server/stop-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/bisect_environment_hash-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/cdesc-ShellCommand.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/command_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/environment_repro_parts-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/load_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/original_cli_args-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/original_cli_args_without_locations-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/original_locations-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/parsed_original_cli_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/repro_command_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/reusable_cli_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellCommand/spec_opts_without_bisect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/cdesc-ShellRunner.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/original_results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/run_command-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/run_locations-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/ShellRunner/start-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Bisect/cdesc-Bisect.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/DeprecationReporterBuffer/cdesc-DeprecationReporterBuffer.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/DeprecationReporterBuffer/deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/DeprecationReporterBuffer/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/DeprecationReporterBuffer/play_onto-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/ExposeCurrentExample/cdesc-ExposeCurrentExample.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/MustBeConfiguredBeforeExampleGroupsError/cdesc-MustBeConfiguredBeforeExampleGroupsError.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/absolute_pattern%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/add_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/add_hook_to_existing_matching_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/add_read_only_setting-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/add_setting-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/add_setting-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/alias_example_group_to-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/alias_example_to-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/alias_it_behaves_like_to-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/alias_it_should_behave_like_to-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/append_after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/append_before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/apply_derived_metadata_to-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/around-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/assert_no_example_groups_defined-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/backtrace_exclusion_patterns%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/backtrace_exclusion_patterns-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/backtrace_formatter-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/backtrace_inclusion_patterns%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/backtrace_inclusion_patterns-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/bisect_runner%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/bisect_runner-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/bisect_runner_class-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/cdesc-Configuration.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/clear_values_derived_from_example_status_persistence_file_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/color-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/color_enabled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/color_mode-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/command-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/conditionally_disable_expectations_monkey_patching-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/conditionally_disable_mocks_monkey_patching-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/configure_example-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/configure_expectation_framework-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/configure_group-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/configure_group_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/configure_mock_framework-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/default_formatter%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/default_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/default_path%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_aliases-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_built_in_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_derived_metadata-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_mixed_in_module-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_predicate_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/define_reader-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/delegate_to_ordering_manager-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/deprecation_stream%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/disable_monkey_patching%21-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/disable_monkey_patching-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/example_status_persistence_file_path%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/exclude_pattern%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/exclusion_filter%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/exclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expect_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expectation_framework%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expectation_frameworks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expose_current_running_example_as-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expose_dsl_globally%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/expose_dsl_globally%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/extend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/extract_location-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/fail_fast%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/file_glob_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/files_or_directories_to_run%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/files_to_run-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_gems_from_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_manager-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_run_excluding-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_run_including-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/filter_run_when_matching-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/force-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/format_docstrings-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/format_docstrings_block-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/formatter%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/formatter_loader-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/formatters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/full_backtrace%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/full_backtrace%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/full_description%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/full_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/gather_directories-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/get_files_to_run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/get_matching_files-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/handle_suite_hook-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/host;/cdesc-host;.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/in_project_source_dir_regex-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/include-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/include_context-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/inclusion_filter%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/inclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/last_run_statuses-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/libs%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/load_file_handling_errors-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/load_spec_files-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/loaded_spec_files-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/metadata_applies_to_group%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/mock_framework%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/mock_framework-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/mock_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/on_example_group_definition-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/on_example_group_definition_callbacks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/on_existing_matching_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/only_failures_but_not_configured%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/ordering_manager-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/output_stream%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/output_to_tty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/output_wrapper-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/paths_to_check-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/pattern%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/pattern_might_load_specs_from_vendored_dirs%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/prepend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/prepend_after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/prepend_before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/profile_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/raise_errors_for_deprecations%21-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/raise_on_warning%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/reporter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/requires%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/reset-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/reset_filters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/reset_reporter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/rspec_expectations_loaded%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/rspec_mocks_loaded%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/run_suite_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/safe_extend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/safe_include-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/safe_prepend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/shared_context_metadata_behavior%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/spec_files_with_failures-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/static_config_filter_manager-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/treat_symbols_as_metadata_keys_with_true_values%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/update_pattern_attr-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/value_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/warnings%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/warnings%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/when_first_matching_example_defined-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/windows_absolute_network_path%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/with_suite_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Configuration/world-i.ri +3 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/args-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/args_from_options_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/cdesc-ConfigurationOptions.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/command_line_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/configure-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/configure_filter_manager-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/custom_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/custom_options_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/env_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/file_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/force%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/global_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/global_options_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/home_options_file_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/load_formatters_into-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/local_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/local_options_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/options-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/options_file_as_erb_string-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/options_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/order-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/organize_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/parse_args_ignoring_files_or_dirs_to_run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/process_options_into-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/project_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/project_options_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/resolve_xdg_config_home-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/xdg_options_file_if_exists-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ConfigurationOptions/xdg_options_file_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_failure_exit_code-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_formatters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_full_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_libs-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/add_requires-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/cdesc-DRbOptions.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbOptions/options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbRunner/cdesc-DRbRunner.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbRunner/drb_argv-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbRunner/drb_port-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbRunner/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DRbRunner/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/cdesc-DSL.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/change_global_dsl-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/example_group_aliases-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/expose_example_group_alias-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/expose_example_group_alias_globally-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/expose_globally%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/exposed_globally%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/remove_globally%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/top_level-c.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DSL/top_level;/cdesc-top_level;.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/cdesc-DidYouMean.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/formats-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/red_font-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/relative_file_name-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/DidYouMean/top_and_tail-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/calculate_run_time-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/cdesc-ExecutionResult.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/ensure_timing_set-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/example_skipped%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/exception-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/finished_at-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/get_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/hash_for_delegation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/issue_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/pending_exception-i.ri +4 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/pending_fixed%3f-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/pending_fixed-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/pending_message-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/record_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/run_time-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/set_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/started_at-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/ExecutionResult/status-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/cdesc-Procsy.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/example-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/executed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/to_proc-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/Procsy/wrap-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/assign_generated_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/cdesc-Example.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/clock-i.ri +3 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/delegate_to_metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/display_exception%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/display_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/duplicate_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/example_group-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/example_group_instance-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/fail_with_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/finish-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/generate_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/id-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/inspect_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/instance_exec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/location_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/location_rerun_argument-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/metadata-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/mocks_need_verification%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/parse_id-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/record_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/reporter-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/rerun_argument-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/run_after_example-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/run_before_example-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/set_aggregate_failures_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/set_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/skip_with_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/update_inherited_metadata-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/verify_mocks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/with_around_and_singleton_context_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Example/with_around_example_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/add_example-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/before_context_ivars-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/cdesc-ExampleGroup.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/children-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/currently_executing_a_context_hook%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/declaration_locations-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/define_example_group_method-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/define_example_method-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/define_nested_shared_group_method-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/delegate_to_metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/descendant_filtered_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/descendants-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/described_class-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/description-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/each_instance_variable_for_example-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/ensure_example_groups_are_configured-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/filtered_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/find_and_eval_shared-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/for_filtered_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/id-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/idempotently_define_singleton_method-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/include_context-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/include_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/method_missing-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/next_runnable_index_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/ordering_strategy-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/parent_groups-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/remove_example-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/reset_memoized-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/run-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/run_after_context_hooks-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/run_before_context_hooks-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/run_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/set_it_up-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/set_ivars-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/singleton_class-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/store_before_context_ivars-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/subclass-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/superclass_before_context_ivars-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/superclass_metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/top_level%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/top_level_description-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/traverse_tree_until-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/update_inherited_metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleGroup/with_replaced_metadata-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/cdesc-ExampleStatusDumper.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/column_widths-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/dump-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/dump-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/formatted_header_rows-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/formatted_row_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/formatted_value_rows-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/headers-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusDumper/rows-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/cdesc-ExampleStatusMerger.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/delete_previous_examples_that_no_longer_exist-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/example_must_no_longer_exist%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/hash_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/loaded_spec_files-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/merge-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/merge-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/sort_value_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusMerger/spec_file_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/cdesc-ExampleStatusParser.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/headers-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/parse-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/parse-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/parse_row-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusParser/split_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/cdesc-ExampleStatusPersister.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/dump_statuses-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/load_from-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/persist-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/persist-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExampleStatusPersister/statuses_from_this_run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/add_with_low_priority-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/build-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/cdesc-ExclusionRules.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/clear-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/delete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/each_pair-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/fetch-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/include_example%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/opposite-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/rules-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ExclusionRules/use_only-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/add_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/add_location-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/add_path_to_arrays_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/cdesc-FilterManager.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/exclude-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/exclude_only-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/exclude_with_low_priority-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/exclusions-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/file_scoped_include%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/include-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/include_only-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/include_with_low_priority-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/inclusions-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/prune-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterManager/prune_conditionally_filtered_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/add_with_low_priority-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/build-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/cdesc-FilterRules.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/clear-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/delete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/each_pair-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/fetch-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/include_example%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/opposite-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/rules-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterRules/use_only-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/append-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/applicable_metadata_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/cdesc-QueryOptimized.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/delete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/find_items_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/handle_mutation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/items_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/prepend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/proc_keys_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/QueryOptimized/reconstruct_caches-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/append-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/cdesc-UpdateOptimized.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/delete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/items_and_filters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/items_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/UpdateOptimized/prepend-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FilterableItemRepository/cdesc-FilterableItemRepository.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FlatMap/cdesc-FlatMap.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FlatMap/flat_map-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/FlatMap/flat_map-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/cdesc-BaseBisectFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/example_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/inherited-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseBisectFormatter/start_dump-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/cdesc-BaseFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/close-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/example_group-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/example_group_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/output_supports_sync-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/restore_sync_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseFormatter/start_sync_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/cdesc-BaseTextFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/close-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/dump_failures-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/dump_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/dump_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BaseTextFormatter/seed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDRbFormatter/cdesc-BisectDRbFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDRbFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDRbFormatter/notify_results-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_dependency_check_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_dependency_check_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_individual_run_complete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_individual_run_start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_original_run_complete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_round_detected_multiple_culprits-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_round_ignoring_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_round_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/bisect_started_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/cdesc-BisectDebugFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectDebugFormatter/describe_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_aborted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_complete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_dependency_check_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_dependency_check_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_dependency_check_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_individual_run_complete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_original_run_complete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_repro_command-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_round_detected_multiple_culprits-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_round_ignoring_ids-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_round_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_started_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/bisect_starting-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/cdesc-BisectProgressFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/BisectProgressFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ConsoleCodes/cdesc-ConsoleCodes.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ConsoleCodes/config_colors_to_methods-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ConsoleCodes/console_code_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ConsoleCodes/wrap-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/cdesc-DelayedPrinter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/deprecation_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/deprecation_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/deprecation_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/print_deferred_deprecation_warnings-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/print_deprecation_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/stash_deprecation_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/DelayedPrinter/summary_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/FileStream/cdesc-FileStream.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/FileStream/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/FileStream/puts-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/FileStream/summarize-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/cdesc-ImmediatePrinter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/deprecation_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/deprecation_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/deprecation_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/print_deprecation_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/ImmediatePrinter/summary_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/RaiseErrorStream/cdesc-RaiseErrorStream.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/RaiseErrorStream/puts-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/RaiseErrorStream/summarize-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/cdesc-DeprecationFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/count-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/deprecation_message_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/deprecation_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/deprecation_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/printer-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DeprecationFormatter/summary_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/cdesc-DocumentationFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/current_indentation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_group_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_group_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/example_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/failure_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/flush_messages-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/next_failure_index-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/passed_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/DocumentationFormatter/pending_output-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/CommonBacktraceTruncater/cdesc-CommonBacktraceTruncater.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/CommonBacktraceTruncater/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/CommonBacktraceTruncater/with_truncated_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/EmptyBacktraceFormatter/cdesc-EmptyBacktraceFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/EmptyBacktraceFormatter/format_backtrace-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/build-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/cdesc-Factory.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/multiple_exception_summarizer-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/multiple_exceptions_error%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/pending_options-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/sub_failure_list_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/Factory/with_multiple_error_options_as_needed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/add_shared_group_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/backtrace_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/cdesc-ExceptionPresenter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/colorized_formatted_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/colorized_message_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/detail_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/encoded_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/encoded_string-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/encoding_of-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/example-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/exception_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/exception_class_name-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/exception_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/extra_detail_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/extra_failure_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/failure_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/failure_slash_error_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/final_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/find_failed_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/formatted_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/formatted_cause-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/formatted_message_and_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/fully_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/fully_formatted_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/indent_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/message_color-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/message_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ExceptionPresenter/read_failed_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FailureListFormatter/cdesc-FailureListFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FailureListFormatter/dump_profile-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FailureListFormatter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FailureListFormatter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FallbackMessageFormatter/cdesc-FallbackMessageFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FallbackMessageFormatter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FallbackMessageFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/FallbackMessageFormatter/output-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/cdesc-Helpers.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/format_duration-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/format_seconds-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/organize_ids-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/pluralize-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Helpers/strip_trailing_zeroes-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/cdesc-HtmlFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/dump_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_group_number-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_group_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_number-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/example_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/extra_failure_content-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/percent_done-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlFormatter/start_dump-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/cdesc-HtmlPrinter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/flush-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/indentation_style-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/make_example_group_header_red-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/make_example_group_header_yellow-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/make_header_red-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/make_header_yellow-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/move_progress-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_example_group_end-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_example_group_start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_example_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_example_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_html_start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlPrinter/print_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/CoderayConverter/cdesc-CoderayConverter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/CoderayConverter/convert-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/NullConverter/cdesc-NullConverter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/NullConverter/convert-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/cdesc-HtmlSnippetExtractor.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/lines_around-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/post_process-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/snippet-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/HtmlSnippetExtractor/snippet_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/cdesc-JsonFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/close-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/dump_profile-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/dump_profile_slowest_example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/dump_profile_slowest_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/dump_summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/format_example-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/output_hash-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/seed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/JsonFormatter/stop-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/built_in_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/cdesc-Loader.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/custom_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/default_formatter-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/duplicate_formatter_exists%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/existing_formatter_implements%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/find_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/formatters-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/formatters-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/notifications_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/open_stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/path_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/prepare_default-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/register-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/reporter-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/setup_default-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/string_const%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/underscore-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Loader/underscore_with_fix_for_non_standard_rspec_naming-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/bold-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/cdesc-ProfileFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/dump_profile-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/dump_profile_slowest_example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/dump_profile_slowest_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/format_caller-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProfileFormatter/output-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProgressFormatter/cdesc-ProgressFormatter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProgressFormatter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProgressFormatter/example_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProgressFormatter/example_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/ProgressFormatter/start_dump-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/Protocol/cdesc-Protocol.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/cdesc-SnippetExtractor.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/expression_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/expression_node-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/expression_outmost_node%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/extract_expression_lines_at-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/extract_line_at-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/least_indentation_from-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/line_range_of_expression-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/line_range_of_location_nodes_in_expression-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/location_nodes_at_beginning_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/source_from_file-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SnippetExtractor/unclosed_tokens_in_line_range-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/CodeRayImplementation/cdesc-CodeRayImplementation.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/CodeRayImplementation/highlight_syntax-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/NoSyntaxHighlightingImplementation/cdesc-NoSyntaxHighlightingImplementation.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/NoSyntaxHighlightingImplementation/highlight_syntax-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/WindowsImplementation/cdesc-WindowsImplementation.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/WindowsImplementation/highlight_syntax-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/attempt_to_add_rspec_terms_to_coderay_keywords-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/cdesc-SyntaxHighlighter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/color_enabled_implementation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/highlight-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/implementation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/SyntaxHighlighter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/cdesc-Formatters.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Formatters/register-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/%5b%5d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/ClassMethods/attr_accessor-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/ClassMethods/cdesc-ClassMethods.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/ClassMethods/hash_attribute_names-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/cdesc-HashImitatable.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/directly_supports_attribute%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/extra_hash_attributes-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/get_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/hash_for_delegation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/included-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/issue_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/set_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/HashImitatable/to_h-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AfterContextHook/cdesc-AfterContextHook.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AfterContextHook/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AfterHook/cdesc-AfterHook.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AfterHook/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AroundHook/cdesc-AroundHook.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AroundHook/execute_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/AroundHook/hook_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/BeforeHook/cdesc-BeforeHook.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/BeforeHook/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/all_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/cdesc-HookCollections.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/ensure_hooks_initialized_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/extract_scope_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/known_scope%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/matching_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/normalized_scope_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/owner_parent_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/process-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/processable_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/register-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/register_global_singleton_context_hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/register_globals-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/run_around_example_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/run_example_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/run_owned_hooks_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/HookCollections/scope_and_options_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/append_after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/append_before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/around-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/cdesc-Hooks.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/hooks-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/prepend_after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Hooks/prepend_before-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/add_with_low_priority-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/apply_standalone_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/cdesc-InclusionRules.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/include_example%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/is_standalone_filter%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/replace_filters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/split_file_scoped_rules-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/InclusionRules/standalone%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/Bisect/bisect_formatter_klass_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/Bisect/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/Bisect/cdesc-Bisect.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/DRbWithFallback/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/DRbWithFallback/cdesc-DRbWithFallback.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/InitializeProject/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/InitializeProject/cdesc-InitializeProject.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/PrintVersion/call-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/PrintVersion/cdesc-PrintVersion.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Invocations/cdesc-Invocations.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/cdesc-LegacyExampleGroupHash.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/directly_supports_attribute%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/get_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/set_value-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/LegacyExampleGroupHash/to_h-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ClassMethods/cdesc-ClassMethods.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ClassMethods/let%21-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ClassMethods/let-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ClassMethods/subject%21-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ClassMethods/subject-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/After/article-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/After/cdesc-After.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/After/hook_expression-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/After/hook_intention-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/Before/article-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/Before/cdesc-Before.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/Before/hook_expression-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/Before/hook_intention-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/cdesc-ContextHookMemoized.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/fetch_or_store-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ContextHookMemoized/isolate_for_context_hook-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/NonThreadSafeMemoized/cdesc-NonThreadSafeMemoized.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/NonThreadSafeMemoized/fetch_or_store-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/NonThreadSafeMemoized/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ThreadsafeMemoized/cdesc-ThreadsafeMemoized.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ThreadsafeMemoized/fetch_or_store-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/ThreadsafeMemoized/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/__init_memoized-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/__memoized-i.ri +3 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/cdesc-MemoizedHelpers.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/define_helpers_on-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/get_constant_or_yield-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/is_expected-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/module_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/should-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/should_not-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MemoizedHelpers/subject-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/backwards_compatibility_default_proc-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/cdesc-ExampleGroupHash.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/create-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/described_class-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/full_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleGroupHash/hash_with_backwards_compatibility_default_proc-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleHash/cdesc-ExampleHash.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleHash/create-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleHash/described_class-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ExampleHash/full_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/block-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/build_description_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/build_scoped_id_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/cdesc-HashPopulator.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/description_args-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/description_separator-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/ensure_valid_user_keys-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/file_path_and_line_number_from-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/metadata-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/populate-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/populate_location_attributes-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/HashPopulator/user_metadata-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ascend-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/ascending-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/build_hash_from-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/cdesc-Metadata.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/deep_hash_dup-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/id_from-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/location_tuple_from-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/relative_path-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Metadata/relative_path_regex-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/apply%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/cdesc-MetadataFilter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/filter_applies%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/filter_applies_to_any_value%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/filters_apply%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/id_filter_applies%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/location_filter_applies%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/proc_filter_applies%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MetadataFilter/silence_metadata_example_group_deprecations-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MinitestAssertionsAdapter/assertions-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MinitestAssertionsAdapter/cdesc-MinitestAssertionsAdapter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Flexmock/cdesc-Flexmock.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Flexmock/framework_name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Flexmock/setup_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Flexmock/teardown_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Flexmock/verify_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Mocha/cdesc-Mocha.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Mocha/framework_name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Mocha/setup_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Mocha/teardown_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Mocha/verify_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Null/cdesc-Null.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Null/setup_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Null/teardown_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/Null/verify_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RR/cdesc-RR.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RR/framework_name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RR/setup_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RR/teardown_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RR/verify_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/configuration-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/framework_name-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/setup_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/teardown_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/RSpec/verify_mocks_for_rspec-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MockingAdapters/cdesc-MockingAdapters.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/InterfaceTag/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/InterfaceTag/cdesc-InterfaceTag.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/InterfaceTag/for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/aggregation_block_label-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/aggregation_metadata-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/all_exceptions-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/cdesc-MultipleExceptionError.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/exception_count_description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/failures-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/other_errors-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/MultipleExceptionError/summary-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/CustomNotification/cdesc-CustomNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/CustomNotification/for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/DeprecationNotification/cdesc-DeprecationNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/DeprecationNotification/from_hash-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExampleNotification/cdesc-ExampleNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExampleNotification/for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/cdesc-ExamplesNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/failed_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/failure_notifications-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/format_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/fully_formatted_failed_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/fully_formatted_pending_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/notifications-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/pending_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ExamplesNotification/pending_notifications-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/cdesc-FailedExampleNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/colorized_formatted_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/colorized_message_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/formatted_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/fully_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/fully_formatted_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/message_lines-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/FailedExampleNotification/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/NullColorizer/cdesc-NullColorizer.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/NullColorizer/wrap-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/NullNotification/cdesc-NullNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/PendingExampleFailedAsExpectedNotification/cdesc-PendingExampleFailedAsExpectedNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/PendingExampleFixedNotification/cdesc-PendingExampleFixedNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/calculate_slowest_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/cdesc-ProfileNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/duration-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/number_of_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/percentage-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/slow_duration-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/slowest_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/ProfileNotification/slowest_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SeedNotification/cdesc-SeedNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SeedNotification/fully_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SeedNotification/seed_used%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SkippedExampleNotification/cdesc-SkippedExampleNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SkippedExampleNotification/fully_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/cdesc-SummaryNotification.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/colorized_rerun_commands-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/colorized_totals_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/duplicate_rerun_locations-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/example_count-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/failure_count-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/formatted_duration-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/formatted_load_time-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/fully_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/pending_count-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/rerun_argument_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/SummaryNotification/totals_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Notifications/cdesc-Notifications.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/NullReporter/cdesc-NullReporter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/NullReporter/method_missing-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/cdesc-ConfigurationManager.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/force-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/order%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/ordering_registry-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/register_ordering-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/seed%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/seed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/ConfigurationManager/seed_used%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Custom/cdesc-Custom.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Custom/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Custom/order-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Identity/cdesc-Identity.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Identity/order-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Random/cdesc-Random.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Random/jenkins_hash_digest-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Random/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Random/order-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Random/used%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Registry/cdesc-Registry.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Registry/fetch-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Registry/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Registry/register-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/Registry/used_random_seed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Ordering/cdesc-Ordering.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/OutputWrapper/cdesc-OutputWrapper.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/OutputWrapper/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/OutputWrapper/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/OutputWrapper/output-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/OutputWrapper/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/add_tag_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/cdesc-Parser.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/configure_only_failures-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/original_args-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/parse-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/parse-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/parser-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Parser/set_fail_fast-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/PendingExampleFixedError/cdesc-PendingExampleFixedError.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/SkipDeclaredInExample/argument-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/SkipDeclaredInExample/cdesc-SkipDeclaredInExample.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/SkipDeclaredInExample/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/cdesc-Pending.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/mark_fixed%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/mark_pending%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/mark_skipped%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Pending/skip-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/cdesc-Profiler.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/example_group_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/example_group_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/example_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Profiler/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/cdesc-ProjectInitializer.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/copy_template-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/destination-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/report_creating-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/report_exists-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/stream-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ProjectInitializer/template_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/blank-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/cdesc-RakeTask.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/define-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/exclude_pattern-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/fail_on_error-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/failure_message-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/file_exclusion_specification-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/file_inclusion_specification-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/name-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/pattern-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/rspec_load_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/rspec_opts-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/rspec_path-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/ruby_opts-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/run_task-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/spec_command-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/verbose-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/with_clean_environment%3d-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RakeTask/with_clean_environment-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/abort_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/cdesc-Reporter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/close-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/close_after-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/ensure_listeners_ready-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_failed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_group_finished-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_group_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_passed-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_pending-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/example_started-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/examples-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/exit_early-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/fail_fast_limit_met%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/failed_examples-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/finish-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/mute_profile_output%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/notify-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/notify_non_example_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/pending_examples-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/prepare_default-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/publish-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/register_listener-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/registered_listeners-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/report-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/seed_used%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/start-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Reporter/stop-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/add_dir_to_load_path-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/add_dir_to_load_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/add_to_load_path-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/add_to_load_path-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/ascend_until-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/ascend_until-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/cdesc-RubyProject.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/determine_root-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/determine_root-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/find_first_parent_containing-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/find_first_parent_containing-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/root-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/RubyProject/root-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/autorun-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/autorun_disabled%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/cdesc-Runner.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/configuration-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/configure-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/disable_autorun%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/handle_interrupt-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/installed_at_exit%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/invoke-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/options-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/perform_at_exit-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/persist_example_statuses-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/run-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/run-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/run_specs-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/running_in_drb%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/setup-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/trap_interrupt-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Runner/world-i.ri +3 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Sandbox/cdesc-Sandbox.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Sandbox/sandboxed-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/%3c%3c-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/cdesc-Set.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/clear-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/delete-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/each-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/include%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/merge-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Set/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedContext/__shared_context_recordings-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedContext/cdesc-SharedContext.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedContext/included-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedContext/record-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/cdesc-Registry.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/ensure_block_has_source_location-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/find-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/formatted_location-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/legacy_add-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/shared_example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/valid_name%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/Registry/warn_if_key_taken-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/cdesc-TopLevelDSL.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/definitions-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/expose_globally%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/exposed_globally%3f-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/remove_globally%21-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/TopLevelDSL/shared_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/cdesc-SharedExampleGroup.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/shared_context-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/shared_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroup/shared_examples_for-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/cdesc-SharedExampleGroupInclusionStackFrame.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/current_backtrace-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/description-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/formatted_inclusion_location-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/inclusion_location-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/shared_example_group_inclusions-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/shared_group_name-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupInclusionStackFrame/with_frame-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/cdesc-SharedExampleGroupModule.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/definition-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/include_in-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/included-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SharedExampleGroupModule/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ShellEscape/cdesc-ShellEscape.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ShellEscape/conditionally_quote-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ShellEscape/escape-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ShellEscape/quote-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/ShellEscape/shell_allows_unquoted_ids%3f-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SuiteHookContext/cdesc-SuiteHookContext.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SuiteHookContext/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/SuiteHookContext/set_exception-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/TestUnitAssertionsAdapter/cdesc-TestUnitAssertionsAdapter.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Time/cdesc-Time.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Warnings/cdesc-Warnings.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Warnings/deprecate-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Warnings/warn_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/Warnings/warn_with-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/all_example_groups-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/cdesc-Null.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/example_groups-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/non_example_failure%3d-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/non_example_failure-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/registered_example_group_files-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/Null/traverse_example_group_trees_until-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/all_example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/all_examples-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/announce_exclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/announce_filters-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/announce_inclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/cdesc-World.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/descending_declaration_line_numbers_by_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/everything_filtered_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/example_count-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/example_group_counts_by_spec_file-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/example_groups-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/exclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/fail_if_config_and_cli_options_invalid-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/filter_manager-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/filtered_examples-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/inclusion_filter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/new-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/non_example_failure-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/num_example_groups_defined_in-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/ordered_example_groups-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/preceding_declaration_line-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/prepare_example_filtering-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/record-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/registered_example_group_files-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/report_filter_message-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/reporter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/reset-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/shared_example_group_registry-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/source_from_file-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/syntax_highlighter-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/traverse_example_group_trees_until-i.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/World/wants_to_quit-i.ri +2 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/cdesc-Core.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/Core/path_to_executable-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/_base_name_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/assign_const-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/base_name_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/cdesc-ExampleGroups.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/constant_scope_for-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/disambiguate-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/ExampleGroups/remove_all_constants-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/clear_examples-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/configuration-c.ri +3 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/configure-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/const_missing-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/current_example%3d-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/current_example-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/reset-c.ri +0 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/RSpec/world-c.ri +4 -0
 - data/.gems/doc/rspec-core-3.9.2/ri/cache.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/BasicObject/cdesc-BasicObject.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/aggregate_failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/cdesc-Object.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/expect-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/not_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/Object/to_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/cdesc-BlockExpectationTarget.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/enforce_block_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/not_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockExpectationTarget/to_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/beginning_line_number-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/block_token_extractor-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/body_content_lines-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/cdesc-BlockSnippetExtractor.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/file_path-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/method_name-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/proc-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/raw_body_lines-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/raw_body_snippet-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/source-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/source_location-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/BlockSnippetExtractor/try_extracting_single_line_body_of-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/add_should_and_should_not_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/backtrace_formatter-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/cdesc-Configuration.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/color%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/false_positives_handler-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/include_chain_clauses_in_custom_matcher_descriptions%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/include_chain_clauses_in_custom_matcher_descriptions-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/max_formatted_output_length%3d-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/on_potential_false_positives%3d-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/on_potential_false_positives-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/reset_syntaxes_to_default-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/syntax%3d-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/syntax-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/warn_about_potential_false_positives%3d-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Configuration/warn_about_potential_false_positives%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Differ/cdesc-Differ.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationHelper/cdesc-ExpectationHelper.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationHelper/check_message-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationHelper/handle_failure-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationHelper/modern_matcher_from-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationHelper/with_matcher-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationNotMetError/cdesc-ExpectationNotMetError.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/InstanceMethods/cdesc-InstanceMethods.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/InstanceMethods/not_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/InstanceMethods/prevent_operator_matchers-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/InstanceMethods/to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/InstanceMethods/to_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/cdesc-ExpectationTarget.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/for-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/ExpectationTarget/target-i.ri +5 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/aggregate-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/assign_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/block_label-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/call-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/cdesc-FailureAggregator.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/metadata-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/notify_aggregated_failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/FailureAggregator/other_errors-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMacherAdapter/cdesc-LegacyMacherAdapter.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMacherAdapter/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMacherAdapter/wrap-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec1/cdesc-RSpec1.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec1/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec1/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec1/interface_matches%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec2/cdesc-RSpec2.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec2/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec2/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/RSpec2/interface_matches%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/cdesc-LegacyMatcherAdapter.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/LegacyMatcherAdapter/wrap-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/aggregation_block_label-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/aggregation_metadata-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/all_exceptions-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/block_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/cdesc-MultipleExpectationsNotMetError.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/enumerated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/enumerated_errors-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/enumerated_failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/exception_count_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/indentation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/indented-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/index_label-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/longest_index_label_width-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/other_errors-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/pluralize-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/summary-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/MultipleExpectationsNotMetError/width_of_label-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/cdesc-NegativeExpectationHandler.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/does_not_match%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/handle_matcher-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/opposite_should_method-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/should_method-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/NegativeExpectationHandler/verb-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/PositiveExpectationHandler/cdesc-PositiveExpectationHandler.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/PositiveExpectationHandler/handle_matcher-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/PositiveExpectationHandler/opposite_should_method-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/PositiveExpectationHandler/should_method-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/PositiveExpectationHandler/verb-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/cdesc-Syntax.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/default_should_host-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/disable_expect-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/disable_should-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/enable_expect-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/enable_should-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/expect-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/expect_enabled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/should-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/should_enabled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/should_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/warn_about_should%21-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Syntax/warn_about_should_unless_configured-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/cdesc-Expectations.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/configuration-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/differ-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Expectations/fail_with-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/cdesc-AliasedMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedMatcherWithOperatorSupport/cdesc-AliasedMatcherWithOperatorSupport.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/cdesc-AliasedNegatedMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/AliasedNegatedMatcher/optimal_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/add_new_line_if_needed-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/cdesc-All.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/failed_objects-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/failure_message_for_item-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/indent_multiline_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/index_failed_objects-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/initialize_copy-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/iterable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/matcher-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/All/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/DefaultFailureMessages/cdesc-DefaultFailureMessages.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/DefaultFailureMessages/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/DefaultFailureMessages/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/DefaultFailureMessages/has_default_failure_messages%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/HashFormatting/cdesc-HashFormatting.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/HashFormatting/improve_hash_formatting-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/HashFormatting/improve_hash_formatting-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/actual-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/actual_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/assert_ivars-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/cdesc-BaseMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/expected-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/expected_formatted-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/expects_call_stack_jump%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/match_unless_raises-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/matcher_name-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/matcher_name-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/present_ivars-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/rescued_exception-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BaseMatcher/underscore-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Be/cdesc-Be.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Be/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Be/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Be/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Be/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeAKindOf/cdesc-BeAKindOf.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeAKindOf/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeAnInstanceOf/cdesc-BeAnInstanceOf.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeAnInstanceOf/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeAnInstanceOf/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/cdesc-BeBetween.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/comparable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/compare-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/exclusive-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/inclusive-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeBetween/not_comparable_clause-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/cdesc-BeComparedTo.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeComparedTo/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeFalsey/cdesc-BeFalsey.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeFalsey/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeFalsey/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeFalsey/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/args_to_s-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/args_to_sentence-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/cdesc-BeHelpers.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/expected_to_sentence-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/inspected_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeHelpers/parenthesize-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeNil/cdesc-BeNil.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeNil/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeNil/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeNil/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/cdesc-BePredicate.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/failure_message_expecting-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/parse_expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/predicate-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/predicate_accessible%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/predicate_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/prefix_and_expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/prefix_to_sentence-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/present_tense_predicate-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/private_predicate%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BePredicate/validity_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeTruthy/cdesc-BeTruthy.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeTruthy/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeTruthy/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeTruthy/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/cdesc-BeWithin.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/needs_expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/not_numeric_clause-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/numeric%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/BeWithin/percent_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStderr/capture-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStderr/cdesc-CaptureStderr.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStderr/name-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStdout/capture-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStdout/cdesc-CaptureStdout.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStdout/name-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStreamToTempfile/capture-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/CaptureStreamToTempfile/cdesc-CaptureStreamToTempfile.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/by-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/by_at_least-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/by_at_most-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/cdesc-Change.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/change_details-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/from-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/negative_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/perform_change-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/positive_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/raise_block_syntax_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Change/to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/actual_after-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/actual_delta-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/cdesc-ChangeDetails.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/changed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/evaluate_value_proc-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/extract_value_block_snippet-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/message_notation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/perform_change-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeDetails/value_representation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/cdesc-ChangeFromValue.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/change_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeFromValue/to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/cdesc-ChangeRelatively.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeRelatively/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeToValue/cdesc-ChangeToValue.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeToValue/change_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeToValue/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeToValue/from-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ChangeToValue/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/And/cdesc-And.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/And/conjunction-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/And/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/And/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/cdesc-NestedEvaluator.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/inner_matcher_block-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/matcher_expects_call_stack_jump%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/matcher_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/NestedEvaluator/order_block_matchers-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/Or/cdesc-Or.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/Or/conjunction-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/Or/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/Or/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/SequentialEvaluator/cdesc-SequentialEvaluator.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/SequentialEvaluator/matcher_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/SequentialEvaluator/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/cdesc-Compound.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/compound_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/diffable_matcher_list-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/diffable_matcher_list_for-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/evaluator-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/expects_call_stack_jump%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/indent_multiline_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/initialize_copy-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_1-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_1_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_2-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_2_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_is_diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/matcher_supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Compound/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/actual_to_expected_matched_indexes-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/apply_pairing_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/best_solution_for_pairing-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/categorize_indexes-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/cdesc-PairingsMaximizer.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/expected_to_actual_matched_indexes-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/find_best_solution-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/reciprocal_single_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/PairingsMaximizer/solution-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/actual_collection_line-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/best_solution-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/cdesc-ContainExactly.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/convert_actual_to_an_array-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/describe_collection-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/expected_collection_line-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/extra_elements_line-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/extra_items-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/generate_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/match_when_sorted%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/message_line-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/missing_elements_line-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/missing_items-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/pairings_maximizer-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/safe_sort-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ContainExactly/to_a_disallowed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Cover/cdesc-Cover.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Cover/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Cover/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Cover/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/EndWith/cdesc-EndWith.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/EndWith/element_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/EndWith/subset_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/cdesc-Eq.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eq/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eql/cdesc-Eql.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eql/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eql/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eql/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Eql/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/actual_inspected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/cdesc-Equal.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/detailed_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/expected_is_a_literal_singleton%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/inspect_object-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Equal/simple_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/actual_exists%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/cdesc-ExistenceTest.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/deprecated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/existence_values-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/predicates-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/uniq_truthy_values-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/valid_test%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/ExistenceTest/validity_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/cdesc-Exist.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Exist/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/args_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/cdesc-Has.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/failure_message_args_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/method_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/predicate-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/predicate_accessible%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/predicate_exists%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/predicate_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/private_predicate%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Has/validity_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/actual-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/actual_has_attribute%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/cache_all_values-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/cdesc-HaveAttributes.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/formatted_values-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/perform_match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/respond_to_attributes%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/respond_to_failed-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/respond_to_failure_message_or-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/HaveAttributes/respond_to_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/actual_collection_includes%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/actual_hash_has_key%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/actual_hash_includes%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/cdesc-Include.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/comparing_hash_keys%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/comparing_hash_to_a_subset%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/convert_to_hash%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/diff_would_wrongly_highlight_matched_item%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/excluded_from_actual-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/expecteds-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/format_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/perform_match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Include/readable_list_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/can_safely_call_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/cdesc-Match.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/match_captures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Match/with_captures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/NegativeOperatorMatcher/__delegate_operator-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/NegativeOperatorMatcher/cdesc-NegativeOperatorMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/NullCapture/capture-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/NullCapture/cdesc-NullCapture.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/NullCapture/name-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/cdesc-OperatorMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/eval_match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/fail_with_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/get-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/has_non_generic_implementation_of%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/register-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/registry-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/unregister-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/OperatorMatcher/use_custom_matcher_or_delegate-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/actual_output_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/captured%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/cdesc-Output.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/negative_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/positive_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/to_stderr-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/to_stderr_from_any_process-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/to_stdout-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Output/to_stdout_from_any_process-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/PositiveOperatorMatcher/__delegate_operator-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/PositiveOperatorMatcher/cdesc-PositiveOperatorMatcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/block_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/cdesc-RaiseError.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/error_and_message_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/eval_block-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/expectation_matched%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/expected_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/expecting_specific_exception%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/expects_call_stack_jump%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/format_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/given_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/handle_warning-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/raise_message_already_set-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/ready_to_eval_block%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/verify_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/warn_about_bare_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/warn_about_negative_false_positive-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/warn_for_false_positives-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/warning-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/warning_about_bare_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RaiseError/with_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ReliableMatchData/captures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ReliableMatchData/cdesc-ReliableMatchData.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ReliableMatchData/match_data-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ReliableMatchData/names-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ReliableMatchData/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/and_any_keywords-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/and_keywords-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/and_unlimited_arguments-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/argument-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/arguments-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/cdesc-RespondTo.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/find_failing_method_names-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/ignoring_method_signature_failure%21-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/matches_arity%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/method_signature_for-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/pp_names-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/setup_method_signature_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_any_keywords-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_arity-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_arity_string-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_keywords-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_keywords_string-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/RespondTo/with_unlimited_arguments-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/block_representation-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/cdesc-Satisfy.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/extract_block_snippet-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/Satisfy/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/after_value_failure-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/before_value_failure-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/cdesc-SpecificValuesChange.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/did_change_failure-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/did_not_change_failure-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/matches_after%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/not_given_a_block_failure-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/perform_change-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/SpecificValuesChange/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/cdesc-StartAndEndWith.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartAndEndWith/subsets_comparable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/cdesc-StartOrEndWith.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartOrEndWith/subsets_comparable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartWith/cdesc-StartWith.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartWith/element_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/StartWith/subset_matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/actual_result-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/caught-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/cdesc-ThrowSymbol.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/expects_call_stack_jump%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/ThrowSymbol/throw_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/at_least-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/at_most-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/cdesc-YieldControl.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/exactly-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/human_readable_count-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/human_readable_expectation_type-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/once-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/set_expected_yields_count-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/thrice-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/times-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldControl/twice-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/assert_used%21-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/assert_valid_expect_block%21-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/cdesc-YieldProbe.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/has_block%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/num_yields-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/probe-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/probe-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/single_yield_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/to_proc-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/yielded_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldProbe/yielded_once%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/cdesc-YieldSuccessiveArgs.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/expected_arg_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/negative_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/positive_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldSuccessiveArgs/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/all_args_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/args_currently_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/cdesc-YieldWithArgs.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/expected_arg_description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/negative_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/positive_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithArgs/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/cdesc-YieldWithNoArgs.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/negative_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/positive_failure_reason-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/YieldWithNoArgs/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/BuiltIn/cdesc-BuiltIn.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/%26-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/%7c-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/and-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/cdesc-Composable.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/description_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/or-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/should_enumerate%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/should_enumerate%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/surface_descriptions_in-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/surface_descriptions_in-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/unreadable_io%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/unreadable_io%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/values_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/Composable/with_matchers_cloned-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/cdesc-DefaultImplementations.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/chained_method_clause_sentences-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/diffable%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/expects_call_stack_jump%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/DefaultImplementations/supports_block_expectations%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/Deprecated/cdesc-Deprecated.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/Deprecated/failure_message_for_should-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/Deprecated/failure_message_for_should_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/Deprecated/match_for_should-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/Deprecated/match_for_should_not-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/assign_attributes-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/cdesc-Macros.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/chain-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/define_user_override-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/description-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/diffable-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/match_unless_raises-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/match_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Macros/supports_block_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/actual-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/actual_arg_for-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/block_arg-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/cdesc-Matcher.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/expected-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/expected_as_array-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/name-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/rescued_exception-i.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/Matcher/respond_to_missing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/alias_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/cdesc-DSL.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/define-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/define_negated_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/matcher-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/DSL/warn_about_block_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/EnglishPhrasing/Array-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/EnglishPhrasing/cdesc-EnglishPhrasing.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/EnglishPhrasing/list-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/EnglishPhrasing/split_words-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/cdesc-ExpectedsForMultipleDiffs.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/diff_label_for-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/diffs-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/for_many_matchers-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/from-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/message_with_diff-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/ExpectedsForMultipleDiffs/truncated-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/FailMatchers/cdesc-FailMatchers.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/FailMatchers/fail-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/FailMatchers/fail_including-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/FailMatchers/fail_with-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/base_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/cdesc-MatcherDelegator.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/initialize_copy-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/new-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherDelegator/respond_to_missing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/MatcherProtocol/cdesc-MatcherProtocol.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/aggregate_failures-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/alias_matcher-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/all-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/append_features-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_a-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_a_kind_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_an-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_an_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_between-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_falsey-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_kind_of-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_nil-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_truthy-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/be_within-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/cdesc-Matchers.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/change-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/clear_generated_description-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/configuration-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/contain_exactly-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/cover-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/end_with-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/eq-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/eql-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/equal-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/exist-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/generated_description-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/have_attributes-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/include-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/is_a_describable_matcher%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/is_a_matcher%3f-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/last_description-c.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/last_expectation_handler-c.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/last_matcher-c.ri +2 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/match-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/match_array-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/output-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/raise_error-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/raise_exception-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/respond_to-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/respond_to_missing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/satisfy-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/start_with-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/throw_symbol-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/yield_control-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/yield_successive_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/yield_with_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/Matchers/yield_with_no_args-i.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-expectations-3.9.1/ri/cache.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/BasicObject/cdesc-BasicObject.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/Class/cdesc-Class.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/Object/cdesc-Object.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/Object/not_to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/Object/to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/Object/to_not-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AllowanceTarget/cdesc-AllowanceTarget.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AllowanceTarget/expression-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndReturnImplementation/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndReturnImplementation/cdesc-AndReturnImplementation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndReturnImplementation/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/cannot_modify_further_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/cdesc-AndWrapOriginalImplementation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/initial_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/inner_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/inner_action-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/present%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndWrapOriginalImplementation/terminal_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndYieldImplementation/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndYieldImplementation/cdesc-AndYieldImplementation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AndYieldImplementation/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/Customizations/cdesc-Customizations.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/Customizations/record-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/cdesc-Chain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/constrained_to_any_of%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/expectation_fulfilled%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/last_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/matches_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/messages-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/negated%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/never-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/playback%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/record-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Chain/with-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ErrorGenerator/cdesc-ErrorGenerator.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ErrorGenerator/raise_does_not_implement_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ErrorGenerator/raise_message_already_received_by_other_instance_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ErrorGenerator/raise_not_supported_with_prepend_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ErrorGenerator/raise_second_instance_received_message_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/cdesc-ExpectChainChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/create_message_expectation_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/expectation_fulfilled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectChainChain/playback%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectationChain/cdesc-ExpectationChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectationChain/expectation_fulfilled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectationChain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/ExpectationChain/verify_invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/FluentInterfaceProxy/cdesc-FluentInterfaceProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/FluentInterfaceProxy/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/FluentInterfaceProxy/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/FluentInterfaceProxy/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/FluentInterfaceProxy/respond_to_missing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/%5b%5d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/add-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/all_expectations_fulfilled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/cdesc-MessageChains.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/each_unfulfilled_expectation_matching-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/has_expectation%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/playback%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/raise_if_second_instance_to_receive_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/received_expected_message%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/remove_stub_chains_for%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/MessageChains/unfulfilled_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/PositiveExpectationChain/cdesc-PositiveExpectationChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/PositiveExpectationChain/create_message_expectation_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/PositiveExpectationChain/invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/cdesc-Proxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/expect_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/klass-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/perform_proxying-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/should_not_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/should_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/stub_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Proxy/unstub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/allow_no_prepended_module_definition_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/already_observing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/ancestor_is_an_observer%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/backup_method%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/build_alias_method_name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/cdesc-Recorder.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/expect_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/instance_that_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/klass-i.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/mark_invoked%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/message_chains-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/normalize_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/notify_received_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/observe%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/playback%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/public_protected_or_private_method_defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/received_expected_message%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/remove_dummy_method%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/restore_method%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/restore_original_method%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/should_not_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/should_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/stop_all_observation%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/stop_observing%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/stub_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/stubs-i.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/super_class_observers_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/super_class_observing%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/unstub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/Recorder/verify-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChain/cdesc-StubChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChain/create_message_expectation_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChain/expectation_fulfilled%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChain/invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChain/verify_invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChainChain/cdesc-StubChainChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChainChain/create_message_expectation_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChainChain/invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/StubChainChain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/cdesc-AnyInstance.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstance/error_generator-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstanceAllowanceTarget/cdesc-AnyInstanceAllowanceTarget.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstanceAllowanceTarget/expression-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstanceExpectationTarget/cdesc-AnyInstanceExpectationTarget.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/AnyInstanceExpectationTarget/expression-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/args_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/cdesc-ArgumentListMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/ensure_expected_args_valid%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/expected_args-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/replace_any_args_with_splat_of_anything-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentListMatcher/resolve_expected_args_based_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/AnyArgMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/AnyArgMatcher/cdesc-AnyArgMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/AnyArgMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/AnyArgsMatcher/cdesc-AnyArgsMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/AnyArgsMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/ArrayIncludingMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/ArrayIncludingMatcher/cdesc-ArrayIncludingMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/ArrayIncludingMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/ArrayIncludingMatcher/formatted_expected_values-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/ArrayIncludingMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BaseHashMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BaseHashMatcher/cdesc-BaseHashMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BaseHashMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BaseHashMatcher/formatted_expected_hash-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BaseHashMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BooleanMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BooleanMatcher/cdesc-BooleanMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/BooleanMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/DuckTypeMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/DuckTypeMatcher/cdesc-DuckTypeMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/DuckTypeMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/DuckTypeMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashExcludingMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashExcludingMatcher/cdesc-HashExcludingMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashExcludingMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashIncludingMatcher/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashIncludingMatcher/cdesc-HashIncludingMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/HashIncludingMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/InstanceOf/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/InstanceOf/cdesc-InstanceOf.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/InstanceOf/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/InstanceOf/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/KindOf/%3d%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/KindOf/cdesc-KindOf.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/KindOf/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/KindOf/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/NoArgsMatcher/cdesc-NoArgsMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/NoArgsMatcher/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/SingletonMatcher/cdesc-SingletonMatcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/SingletonMatcher/inherited-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/a_kind_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/an_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/any_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/anything-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/anythingize_lonely_keys-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/array_including-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/boolean-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/cdesc-ArgumentMatchers.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/duck_type-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/hash_excluding-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/hash_including-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/hash_not_including-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/kind_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ArgumentMatchers/no_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/CallbackInvocationStrategy/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/CallbackInvocationStrategy/cdesc-CallbackInvocationStrategy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ClassNewMethodReference/applies_to%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ClassNewMethodReference/cdesc-ClassNewMethodReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ClassNewMethodReference/with_signature-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ClassVerifyingDouble/cdesc-ClassVerifyingDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/add_stub_and_should_receive_to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/allow_message_expectations_on_nil-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/before_verifying_doubles-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/cdesc-Configuration.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/color%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/patch_marshal_to_support_partial_doubles%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/reset_syntaxes_to_default-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/syntax%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/syntax-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/temporarily_suppress_partial_double_verification-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/transfer_nested_constants%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/transfer_nested_constants-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/verify_doubled_constant_names%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/verify_doubled_constant_names-i.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/verify_partial_doubles%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/verify_partial_doubles%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/verifying_double_callbacks-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/when_declaring_verifying_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/yield_receiver_to_any_instance_implementation_blocks%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Configuration/yield_receiver_to_any_instance_implementation_blocks-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/cdesc-Constant.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/hidden%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/hidden-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/mutated%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/name-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/original-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/original_value-i.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/previously_defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/previously_defined-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/stubbed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/stubbed-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/unmutated-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/valid_name%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Constant/valid_name-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/cdesc-BaseMutator.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/full_constant_name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/idempotently_reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/original_value-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/BaseMutator/to_constant-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/ConstantHider/cdesc-ConstantHider.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/ConstantHider/mutate-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/ConstantHider/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/ConstantHider/to_constant-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/cdesc-DefinedConstantReplacer.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/mutate-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/should_transfer_nested_constants%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/to_constant-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/transfer_nested_constants-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/DefinedConstantReplacer/verify_constants_to_transfer%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/UndefinedConstantSetter/cdesc-UndefinedConstantSetter.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/UndefinedConstantSetter/mutate-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/UndefinedConstantSetter/name_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/UndefinedConstantSetter/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/UndefinedConstantSetter/to_constant-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/cdesc-ConstantMutator.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/hide-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/mutate-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/raise_on_invalid_const-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ConstantMutator/stub-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/cdesc-DirectObjectReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/const_to_replace-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/target-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/DirectObjectReference/when_loaded-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Double/cdesc-Double.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/__raise-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/arg_list-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/cdesc-ErrorGenerator.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/count_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/default_error_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/describe_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/diff_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/differ-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/error_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/expectation_on_nil_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/expected_part_of_expectation_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/format_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/format_received_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/group_count-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/grouped_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/intro-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/list_of_exactly_one_string%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/method_call_args_description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/notify-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/opts-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/prepend_to_backtrace-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_already_invoked_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_cant_constrain_count_for_negated_have_received_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_double_negation_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_expectation_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_expectation_on_mocked_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_expectation_on_nil_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_expectation_on_unstubbed_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_expired_test_double_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_have_received_disallowed-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_invalid_arguments_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_method_not_stubbed_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_missing_block_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_missing_default_stub_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_non_public_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_only_valid_on_a_partial_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_out_of_order_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_similar_message_args_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_unexpected_message_args_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_unexpected_message_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_unimplemented_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_verifying_double_not_defined_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/raise_wrong_arity_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/received_part_of_expectation_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/times-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/unexpected_arguments_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ErrorGenerator/unpack_string_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/ExpectHost/cdesc-ExpectHost.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/allow_message_expectations_on_nil-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/cdesc-ExampleMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/class_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/class_spy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/declare_double-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/declare_verifying_double-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/extended-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/have_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/hide_const-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/included-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/instance_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/instance_spy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/object_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/object_spy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/spy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/stub_const-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExampleMethods/without_partial_double_verification-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectChain/cdesc-ExpectChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectChain/expect_chain_on-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectChain/expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectationTarget/cdesc-ExpectationTarget.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectationTargetMethods/cdesc-ExpectationTargetMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ExpectationTargetMethods/expression-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/actions-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/cdesc-Implementation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/initial_action-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/inner_action-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/present%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Implementation/terminal_action-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodReference/cdesc-InstanceMethodReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodReference/find_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodReference/method_defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodReference/method_implemented%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodReference/visibility_from-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/cdesc-InstanceMethodStasher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/handle_restoration_failures-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/method_defined_directly_on_klass%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/method_defined_on_klass%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/method_is_stashed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/method_owned_by_klass%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/object;/cdesc-object;.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/original_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/restore-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/stash-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceMethodStasher/stashed_method_name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceVerifyingDouble/__build_mock_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/InstanceVerifyingDouble/cdesc-InstanceVerifyingDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/cdesc-MarshalExtension.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/dump-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/dump_with_rspec_mocks-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/dump_without_rspec_mocks-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/patch%21-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MarshalExtension/unpatch%21-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ExpectationCustomization/block-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ExpectationCustomization/cdesc-ExpectationCustomization.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ExpectationCustomization/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ExpectationCustomization/playback_onto-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/apply_constraints_to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/capture_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/cdesc-HaveReceived.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/count_constraint-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/disallow-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/ensure_count_unconstrained-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/expect-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/expected_messages_received_in_order%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/failure_message_when_negated-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/mock_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/notify_failure_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_any_instance_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_any_instance_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_any_instance_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/HaveReceived/setup_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Matcher/cdesc-Matcher.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/DefaultDescribable/cdesc-DefaultDescribable.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/DefaultDescribable/description_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/DefaultDescribable/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/cdesc-Receive.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/describable-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/move_block_to_last_customization-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_any_instance_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_any_instance_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_any_instance_method_substitute-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_any_instance_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_method_substitute-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_mock_proxy_method_substitute-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/setup_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/Receive/warn_if_any_instance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/cdesc-ReceiveMessageChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/formatted_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/replay_customizations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/setup_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/setup_any_instance_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/setup_any_instance_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/setup_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessageChain/setup_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/any_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/cdesc-ReceiveMessages.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/does_not_match%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/each_message_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/name-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/proxy_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/setup_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/setup_any_instance_allowance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/setup_any_instance_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/setup_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/setup_negative_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/ReceiveMessages/warn_about_block-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Matchers/cdesc-Matchers.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/block-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/cdesc-MessageChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/chain_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/find_matching_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/find_matching_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/format_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageChain/setup_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/actual_received_count_matters%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/additional_expected_calls-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/advise-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/and_yield_receiver_to_implementation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/argument_list_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/called_max_times%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/cdesc-ImplementationDetails.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/description_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/ensure_expected_ordering_received%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/error_generator-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/exception_source_id-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/expectation_count_type-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/expected_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/expected_from-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/expected_messages_received%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/expected_received_count-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/generate_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/has_been_invoked%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/ignoring_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/implementation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/increase_actual_received_count%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/initial_implementation_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/inner_implementation_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/invoke-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/invoke_incrementing_actual_calls_by-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/invoke_without_incrementing_received_count-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/matches_at_least_count%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/matches_at_most_count%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/matches_exact_count%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/matches_name_but_not_args-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/negative%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/negative_expectation_for%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/ordered%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/orig_object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/raise_already_invoked_error_if_necessary-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/raise_out_of_order_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/raise_unexpected_message_args_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/safe_invoke-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/set_expected_received_count-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/similar_messages-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/terminal_implementation_action%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/type-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/unadvise-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/verify_messages_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/warn_about_stub_override-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/wrap_original-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ImplementationDetails/yield_receiver_to_implementation_block%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_call_original-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_raise-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_return-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_throw-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_wrap_original-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/and_yield-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/at_least-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/at_most-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/cdesc-MessageExpectation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/exactly-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/never-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/once-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/ordered-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/thrice-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/time-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/times-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/twice-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MessageExpectation/with-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/@object;/cdesc-@object;.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/add_default_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/add_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/add_simple_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/add_simple_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/add_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/build_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/cdesc-MethodDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/clear-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/configure_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/define_proxy_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/definition_target-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/expectations-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/message_expectation_class-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/method_name-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/method_stasher-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/new_rspec_prepended_module-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/object-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/object_singleton_class-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/original_implementation_callable-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/original_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/proxy_method_invoked-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/raise_method_not_stubbed_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/remove_method_from_definition_target-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/remove_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/remove_stub_if_present-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/restore_original_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/restore_original_visibility-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/save_original_implementation_callable%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/setup_simple_method_double-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/show_frozen_warning-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/stubs-i.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/usable_rspec_prepended_module-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/verify-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodDouble/visibility-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/cdesc-MethodReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/implemented%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/instance_method_visibility_for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/method_defined_at_any_visibility%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/method_visibility_for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/object;/cdesc-object;.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/original_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/unimplemented%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/visibility-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MethodReference/with_signature-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MinitestIntegration/after_teardown-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MinitestIntegration/before_setup-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/MinitestIntegration/cdesc-MinitestIntegration.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/cdesc-NamedObjectReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/const_to_replace-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/description-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/target-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NamedObjectReference/when_loaded-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/any_instance_recorder_not_found_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/cdesc-NestedSpace.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/constant_mutator_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/proxies_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/proxy_not_found_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NestedSpace/registered%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NoCallbackInvocationStrategy/call-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/NoCallbackInvocationStrategy/cdesc-NoCallbackInvocationStrategy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/cdesc-ObjectMethodReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/find_method-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/method_defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/method_implemented%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/object;/cdesc-object;.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectMethodReference/visibility_from-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectReference/anonymous_module%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectReference/cdesc-ObjectReference.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectReference/for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectReference/name_of-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectVerifyingDouble/cdesc-ObjectVerifyingDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectVerifyingDoubleMethods/__build_mock_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectVerifyingDoubleMethods/as_stubbed_const-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ObjectVerifyingDoubleMethods/cdesc-ObjectVerifyingDoubleMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/cdesc-OrderGroup.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/clear-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/consume-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/expectation_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/expectations_invoked_in_order%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/expected_invocations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/handle_order_constraint-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/invoked-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/invoked_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/ready_for%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/register-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/remaining_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/OrderGroup/verify_invocation_order-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxy/cdesc-PartialClassDoubleProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/cdesc-PartialClassDoubleProxyMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/method_double_from_ancestor_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/original_method_handle_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/original_unbound_method_handle_from_ancestor_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialClassDoubleProxyMethods/superclass_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/add_simple_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/add_simple_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/any_instance_class_recorder_observing_method%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/cdesc-PartialDoubleProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/message_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/original_method_handle_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/PartialDoubleProxy/visibility_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/add_message_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/add_simple_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/add_simple_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/add_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/as_null_object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/build_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/cdesc-Proxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/check_for_unexpected_arguments-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/ensure_implemented-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/find_almost_matching_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/find_almost_matching_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/find_best_matching_expectation_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/find_matching_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/find_matching_method_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/has_negative_expectation%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/message_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/messages_arg_list-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/method_double_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/method_double_if_exists_for_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/null_object%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/object-i.ri +2 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/original_method_handle_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/prepended_modules_of-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/prepended_modules_of_singleton_class-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/raise_missing_default_stub_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/raise_unexpected_message_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/received_message%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/record_message_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/remove_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/remove_stub_if_present-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/replay_received_message_on-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/verify-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Proxy/visibility_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/add_message_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/add_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/cdesc-ProxyForNil.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/disallow_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/raise_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/set_expectation_behavior-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/warn-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/warn_about_expectations-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/ProxyForNil/warn_or_raise%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/any_instance_proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/any_instance_recorder_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/any_instance_recorders_from_ancestry_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/cdesc-RootSpace.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/new_scope-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/raise_lifecycle_message-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/register_constant_mutator-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/registered%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/reset_all-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/superclass_proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/RootSpace/verify_all-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/called_max_times%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/cdesc-SimpleMessageExpectation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/invoke-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/matches%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/unadvise-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/SimpleMessageExpectation/verify_messages_received-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_mutex-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_recorder_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_recorder_not_found_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_recorders-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/any_instance_recorders_from_ancestry_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/cdesc-Space.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/class_proxy_with_callback_verification_strategy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/constant_mutator_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/ensure_registered-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/id_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/new_mutex-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/new_scope-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/object;/cdesc-object;.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/proxies-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/proxies_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/proxy_mutex-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/proxy_not_found_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/register_constant_mutator-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/registered%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/reset_all-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/superclass_proxy_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/superclass_proxy_not_found_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Space/verify_all-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/StubChain/cdesc-StubChain.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/StubChain/expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/StubChain/stub_chain_on-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/allow-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/allow_any_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/any_instance-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/as_null_object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/cdesc-Syntax.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/default_should_syntax_host-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/disable_expect-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/disable_should-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/enable_expect-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/enable_should-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/expect-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/expect_any_instance_of-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/expect_enabled%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/null_object%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/receive_message_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/receive_messages-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/received_message%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/should_enabled%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/should_not_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/should_receive-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/stub_chain-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/unstub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/warn_about_should%21-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Syntax/warn_unless_should_configured-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetBase/cdesc-TargetBase.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetBase/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationClassMethods/cdesc-TargetDelegationClassMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationClassMethods/delegate_not_to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationClassMethods/delegate_to-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationClassMethods/disallow_negation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/cdesc-TargetDelegationInstanceMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/define_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/matcher_allowed%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/raise_negation_unsupported-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/raise_unsupported_matcher-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TargetDelegationInstanceMethods/target-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/__build_mock_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/__build_mock_proxy_unless_expired-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/__disallow_further_usage%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/__mock_proxy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/__raise_expired_error-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/as_null_object-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/assign_stubs-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/cdesc-TestDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/freeze-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/initialize_copy-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/null_object%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDouble/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleFormatter/cdesc-TestDoubleFormatter.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleFormatter/format-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleFormatter/name_desc-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleFormatter/type_desc-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleFormatter/verified_module_desc-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleProxy/cdesc-TestDoubleProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/TestDoubleProxy/reset-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/SilentIO/cdesc-SilentIO.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/SilentIO/method_missing-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/SilentIO/respond_to%3f-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/__send__-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/cdesc-VerifyingDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/respond_to%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingDouble/send-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingClassNewMethodDouble/cdesc-VerifyingExistingClassNewMethodDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingClassNewMethodDouble/with_signature-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingMethodDouble/cdesc-VerifyingExistingMethodDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingMethodDouble/for-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingMethodDouble/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingMethodDouble/unimplemented%3f-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingExistingMethodDouble/with_signature-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMessageExpectation/cdesc-VerifyingMessageExpectation.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMessageExpectation/method_reference-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMessageExpectation/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMessageExpectation/validate_expected_arguments%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMessageExpectation/with-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/add_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/add_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/cdesc-VerifyingMethodDouble.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/message_expectation_class-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/proxy_method_invoked-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingMethodDouble/validate_arguments%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingPartialClassDoubleProxy/cdesc-VerifyingPartialClassDoubleProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingPartialDoubleProxy/cdesc-VerifyingPartialDoubleProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingPartialDoubleProxy/ensure_implemented-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingPartialDoubleProxy/method_reference-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingPartialDoubleProxy/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxy/cdesc-VerifyingProxy.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxy/method_reference-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxy/new-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxy/validate_arguments%21-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxy/visibility_for-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/add_message_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/add_simple_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/add_stub-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/cdesc-VerifyingProxyMethods.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/ensure_implemented-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/VerifyingProxyMethods/ensure_publicly_implemented-i.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/allow_message-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/cdesc-Mocks.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/configuration-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/error_generator-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/expect_message-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/setup-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/space-c.ri +3 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/teardown-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/verify-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/Mocks/with_temporary_scope-c.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-mocks-3.9.1/ri/cache.ri +95 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/Object/cdesc-Object.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/Object/command_from-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/Object/expected_encoding%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/Object/have_successful_no_warnings_output-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/Object/load_all_files-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/CallerFilter/cdesc-CallerFilter.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/CallerFilter/first_non_rspec_line-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/AllExceptionsExceptOnesWeMustNotRescue/%3d%3d%3d-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/AllExceptionsExceptOnesWeMustNotRescue/cdesc-AllExceptionsExceptOnesWeMustNotRescue.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/BlockSignature/cdesc-BlockSignature.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/BlockSignature/classify_parameters-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ComparableVersion/%3c%3d%3e-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ComparableVersion/cdesc-ComparableVersion.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ComparableVersion/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ComparableVersion/segments-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ComparableVersion/string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/add_old_hunk_to_hunk-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/add_to_output-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/all_strings%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/any_multiline_strings%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/blue-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/build_hunks-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/cdesc-Differ.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/coerce_to_string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/color%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/color-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/color_diff-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/diff-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/diff_as_object-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/diff_as_string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/diffably_stringify-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/finalize_output-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/format_type-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/green-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/handle_encoding_errors-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/hash_to_string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/multiline%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/no_numbers%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/no_procs%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/normal-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/object_to_string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/red-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Differ/safely_flatten-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/DirectoryMaker/cdesc-DirectoryMaker.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/DirectoryMaker/directory_exists%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/DirectoryMaker/generate_path-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/DirectoryMaker/generate_stack-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/DirectoryMaker/mkdir_p-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/%3c%3c-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/cdesc-EncodedString.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/detect_source_encoding-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/matching_encoding-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/pick_encoding-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/remove_invalid_bytes-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/source_encoding-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/split-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/to_s-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/EncodedString/to_str-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FormattingSupport/cdesc-FormattingSupport.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FormattingSupport/dedent-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FuzzyMatcher/arrays_match%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FuzzyMatcher/cdesc-FuzzyMatcher.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FuzzyMatcher/hashes_match%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/FuzzyMatcher/values_match%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/actual_lines-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/build_hunk-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/cdesc-HunkGenerator.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/context_lines-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/diffs-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/expected_lines-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/hunks-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/HunkGenerator/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/InSubProcess/cdesc-InSubProcess.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/InSubProcess/in_sub_process-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/InSubProcess/in_sub_process_if_possible-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/InSubProcess/marshal_dump_with_unmarshable_object_handling-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/cdesc-SignatureWithKeywordArgumentsMatcher.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/has_kw_args_in%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/invalid_kw_args_from-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/missing_kw_args_from-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/non_kw_args_arity_description-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/SignatureWithKeywordArgumentsMatcher/valid_non_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/cdesc-LooseSignatureVerifier.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/LooseSignatureVerifier/split_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/arbitrary_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/cdesc-MethodSignature.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/classify_arity-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/classify_parameters-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/could_contain_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/description-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/has_kw_args_in%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/invalid_kw_args_from-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/max_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/min_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/missing_kw_args_from-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/non_kw_args_arity_description-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/optional_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/required_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/unlimited_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignature/valid_non_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/cdesc-MethodSignatureExpectation.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/empty%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/expect_arbitrary_keywords-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/expect_unlimited_arguments-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/keywords%3d-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/keywords-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/max_count%3d-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/max_count-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/min_count%3d-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/min_count-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureExpectation/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/arbitrary_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/cdesc-MethodSignatureVerifier.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/error_message-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/invalid_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/max_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/min_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/missing_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/split_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/unlimited_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/valid%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/valid_non_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/MethodSignatureVerifier/with_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/cdesc-Mutex.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/lock-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/synchronize-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/unlock-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Mutex/wakeup_and_run_waiting_thread-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/OS/cdesc-OS.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/OS/windows%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/OS/windows_file_path%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/BigDecimalInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/BigDecimalInspector/cdesc-BigDecimalInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/BigDecimalInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DateTimeInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DateTimeInspector/cdesc-DateTimeInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DateTimeInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DelegatorInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DelegatorInspector/cdesc-DelegatorInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DelegatorInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DescribableMatcherInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DescribableMatcherInspector/cdesc-DescribableMatcherInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/DescribableMatcherInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/InspectableObjectInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/InspectableObjectInspector/cdesc-InspectableObjectInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/InspectableObjectInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/TimeInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/TimeInspector/cdesc-TimeInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/TimeInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/UninspectableObjectInspector/can_inspect%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/UninspectableObjectInspector/cdesc-UninspectableObjectInspector.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/UninspectableObjectInspector/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/UninspectableObjectInspector/klass-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/UninspectableObjectInspector/native_object_id-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/cdesc-ObjectFormatter.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/default_instance-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/format-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/format-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/max_formatted_output_length-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/prepare_array-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/prepare_element-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/prepare_for_inspection-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/prepare_for_inspection-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/prepare_hash-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/recursive_structure%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/sort_hash_keys-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/truncate_string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ObjectFormatter/with_entering_structure-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/cdesc-RecursiveConstMethods.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/const_defined_on%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/constants_defined_on-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/get_const_defined_on-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/normalize_const_name-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/recursive_const_defined%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RecursiveConstMethods/recursive_const_get-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ReentrantMutex/cdesc-ReentrantMutex.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ReentrantMutex/enter-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ReentrantMutex/exit-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ReentrantMutex/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ReentrantMutex/synchronize-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/cdesc-Ruby.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/jruby%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/jruby_9000%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/jruby_version-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/mri%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/non_mri%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/rbx%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Ruby/truffleruby%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/caller_locations_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/cdesc-RubyFeatures.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/foo-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/fork_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/kw_args_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/module_prepends_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/module_refinement_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/optional_and_splat_args_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/required_kw_args_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/ripper_supported%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/supports_exception_cause%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/supports_rebinding_module_methods%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/RubyFeatures/supports_taint%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/cdesc-ShellOut.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/filter-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/run_ruby_with_current_load_path-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/shell_out-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/strip_known_warnings-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/ShellOut/with_env-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/ExpressionSequenceNode/cdesc-ExpressionSequenceNode.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/ExpressionSequenceNode/raw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/ExpressionSequenceNode/type-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/cdesc-Node.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/children-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/each-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/each_ancestor-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/location-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/parent-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/raw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/sexp%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/sexp-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Node/type-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/cdesc-Token.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/closed_by%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/closed_by_delimiter%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/closed_by_keyword%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/eql%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/keyword%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/location-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/opening%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/opening_delimiter%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/opening_keyword%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/string-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/token-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/tokens_from_ripper_tokens-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/Token/type-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/ast-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/cdesc-Source.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/from_file-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/inspect-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/lines-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/nodes_by_line_number-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/path-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/source-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/tokens-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Source/tokens_by_line_number-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Spec/cdesc-Spec.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Spec/setup_simplecov-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Spec/start_simplecov-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/%3d%3d-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/cdesc-StdErrSplitter.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/has_output%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/method_missing-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/output-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/reopen-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/reset%21-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/to_io-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/verify_no_warnings%21-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StdErrSplitter/write-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/arbitrary_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/cdesc-StrictSignatureVerifier.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/error_message-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/invalid_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/max_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/min_non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/missing_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/new-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/non_kw_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/split_args-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/unlimited_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/valid%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/valid_non_kw_args%3f-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/StrictSignatureVerifier/with_expectation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Version/cdesc-Version.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Warnings/cdesc-Warnings.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Warnings/deprecate-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Warnings/warn_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Warnings/warn_with-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/Warnings/warning-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WhitespaceChecks/cdesc-WhitespaceChecks.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WhitespaceChecks/check_for_extra_spaces-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WhitespaceChecks/check_for_tab_characters-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WithIsolatedStdErr/cdesc-WithIsolatedStdErr.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WithIsolatedStdErr/with_isolated_stderr-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WithKeywordsWhenNeeded/cdesc-WithKeywordsWhenNeeded.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/WithKeywordsWhenNeeded/class_exec-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/cdesc-Support.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/class_of-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/define_optimized_require_for_rspec-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/deregister_matcher_definition-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/failure_notifier%3d-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/failure_notifier-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/is_a_matcher%3f-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/matcher_definitions-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/method_handle_for-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/notify_failure-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/object;/cdesc-object;.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/register_matcher_definition-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/rspec_description_for_object-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/thread_local_data-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/warning_notifier-c.ri +2 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/Support/with_failure_notifier-c.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpec/cdesc-RSpec.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/allow_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/allow_warning-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/cdesc-RSpecHelpers.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_deprecation_with_call_site-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_deprecation_without_call_site-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_no_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_no_deprecations-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_no_warnings-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_warn_deprecation-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_warn_deprecation_with_call_site-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_warning_with_call_site-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/RSpecHelpers/expect_warning_without_call_site-i.ri +0 -0
 - data/.gems/doc/rspec-support-3.9.3/ri/cache.ri +0 -0
 - data/.gems/gems/diff-lcs-1.3/.rspec +1 -0
 - data/.gems/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
 - data/.gems/gems/diff-lcs-1.3/Contributing.md +83 -0
 - data/.gems/gems/diff-lcs-1.3/History.md +220 -0
 - data/.gems/gems/diff-lcs-1.3/License.md +39 -0
 - data/.gems/gems/diff-lcs-1.3/Manifest.txt +37 -0
 - data/.gems/gems/diff-lcs-1.3/README.rdoc +84 -0
 - data/.gems/gems/diff-lcs-1.3/Rakefile +57 -0
 - data/.gems/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
 - data/.gems/gems/diff-lcs-1.3/bin/htmldiff +32 -0
 - data/.gems/gems/diff-lcs-1.3/bin/ldiff +6 -0
 - data/.gems/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
 - data/.gems/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
 - data/.gems/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
 - data/.gems/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
 - data/.gems/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
 - data/.gems/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
 - data/.gems/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
 - data/.gems/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
 - data/.gems/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
 - data/.gems/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
 - data/.gems/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
 - data/.gems/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
 - data/.gems/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
 - data/.gems/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
 - data/.gems/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
 - data/.gems/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
 - data/.gems/gems/rake-13.0.1/.github/workflows/macos.yml +22 -0
 - data/.gems/gems/rake-13.0.1/.github/workflows/ubuntu-rvm.yml +28 -0
 - data/.gems/gems/rake-13.0.1/.github/workflows/ubuntu.yml +20 -0
 - data/.gems/gems/rake-13.0.1/.github/workflows/windows.yml +20 -0
 - data/.gems/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
 - data/.gems/gems/rake-13.0.1/Gemfile +10 -0
 - data/.gems/gems/rake-13.0.1/History.rdoc +2368 -0
 - data/.gems/gems/rake-13.0.1/MIT-LICENSE +21 -0
 - data/.gems/gems/rake-13.0.1/README.rdoc +155 -0
 - data/.gems/gems/rake-13.0.1/Rakefile +41 -0
 - data/.gems/gems/rake-13.0.1/bin/bundle +105 -0
 - data/.gems/gems/rake-13.0.1/bin/console +7 -0
 - data/.gems/gems/rake-13.0.1/bin/rake +29 -0
 - data/.gems/gems/rake-13.0.1/bin/rdoc +29 -0
 - data/.gems/gems/rake-13.0.1/bin/rubocop +29 -0
 - data/.gems/gems/rake-13.0.1/bin/setup +6 -0
 - data/.gems/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
 - data/.gems/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
 - data/.gems/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
 - data/.gems/gems/rake-13.0.1/doc/example/a.c +6 -0
 - data/.gems/gems/rake-13.0.1/doc/example/b.c +6 -0
 - data/.gems/gems/rake-13.0.1/doc/example/main.c +11 -0
 - data/.gems/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
 - data/.gems/gems/rake-13.0.1/doc/jamis.rb +592 -0
 - data/.gems/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
 - data/.gems/gems/rake-13.0.1/doc/rake.1 +156 -0
 - data/.gems/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
 - data/.gems/gems/rake-13.0.1/doc/rational.rdoc +151 -0
 - data/.gems/gems/rake-13.0.1/exe/rake +27 -0
 - data/.gems/gems/rake-13.0.1/lib/rake.rb +71 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/application.rb +824 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/task.rb +434 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/version.rb +10 -0
 - data/.gems/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
 - data/.gems/gems/rake-13.0.1/rake.gemspec +43 -0
 - data/.gems/gems/rspec-3.9.0/LICENSE.md +27 -0
 - data/.gems/gems/rspec-3.9.0/README.md +43 -0
 - data/.gems/gems/rspec-3.9.0/lib/rspec.rb +3 -0
 - data/.gems/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
 - data/.gems/gems/rspec-core-3.9.2/.document +5 -0
 - data/.gems/gems/rspec-core-3.9.2/.yardopts +8 -0
 - data/.gems/gems/rspec-core-3.9.2/Changelog.md +2291 -0
 - data/.gems/gems/rspec-core-3.9.2/LICENSE.md +26 -0
 - data/.gems/gems/rspec-core-3.9.2/README.md +384 -0
 - data/.gems/gems/rspec-core-3.9.2/exe/rspec +4 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/autorun.rb +3 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core.rb +186 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/backtrace_formatter.rb +65 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/coordinator.rb +62 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/example_minimizer.rb +173 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/fork_runner.rb +135 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/server.rb +61 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_command.rb +126 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/shell_runner.rb +73 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/bisect/utilities.rb +58 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/configuration.rb +2363 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/configuration_options.rb +233 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/did_you_mean.rb +46 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/drb.rb +113 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/dsl.rb +98 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/example.rb +656 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/example_group.rb +900 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/example_status_persister.rb +235 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/filter_manager.rb +231 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/flat_map.rb +20 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters.rb +273 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/console_codes.rb +68 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/exception_presenter.rb +511 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/helpers.rb +110 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_formatter.rb +153 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_printer.rb +414 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/json_formatter.rb +102 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/progress_formatter.rb +29 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/protocol.rb +182 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/hooks.rb +641 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/invocations.rb +87 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/memoized_helpers.rb +554 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/metadata.rb +498 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/metadata_filter.rb +255 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/notifications.rb +521 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/option_parser.rb +316 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/ordering.rb +158 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/output_wrapper.rb +29 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/pending.rb +165 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/profiler.rb +34 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer.rb +48 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/.rspec +1 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/rake_task.rb +188 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/reporter.rb +265 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/ruby_project.rb +53 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/runner.rb +204 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/sandbox.rb +37 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/set.rb +54 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/shared_context.rb +55 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/shared_example_group.rb +271 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/shell_escape.rb +49 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/version.rb +9 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/warnings.rb +40 -0
 - data/.gems/gems/rspec-core-3.9.2/lib/rspec/core/world.rb +276 -0
 - data/.gems/gems/rspec-expectations-3.9.1/.document +5 -0
 - data/.gems/gems/rspec-expectations-3.9.1/.yardopts +6 -0
 - data/.gems/gems/rspec-expectations-3.9.1/Changelog.md +1178 -0
 - data/.gems/gems/rspec-expectations-3.9.1/LICENSE.md +25 -0
 - data/.gems/gems/rspec-expectations-3.9.1/README.md +320 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations.rb +82 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/configuration.rb +215 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/expectation_target.rb +127 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/fail_with.rb +39 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/failure_aggregator.rb +194 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/handler.rb +170 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/minitest_integration.rb +58 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/syntax.rb +132 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/expectations/version.rb +8 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers.rb +1038 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in.rb +52 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/all.rb +86 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/be.rb +288 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/change.rb +428 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/compound.rb +276 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/cover.rb +24 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/eq.rb +40 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/eql.rb +34 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/equal.rb +81 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/exist.rb +90 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/has.rb +103 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/include.rb +149 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/match.rb +106 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/operators.rb +128 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/output.rb +200 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/raise_error.rb +230 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/respond_to.rb +199 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/satisfy.rb +60 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/built_in/yield.rb +432 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/composable.rb +171 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/dsl.rb +534 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/english_phrasing.rb +58 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/fail_matchers.rb +42 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/generated_descriptions.rb +41 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
 - data/.gems/gems/rspec-expectations-3.9.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
 - data/.gems/gems/rspec-mocks-3.9.1/.document +5 -0
 - data/.gems/gems/rspec-mocks-3.9.1/.yardopts +6 -0
 - data/.gems/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
 - data/.gems/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
 - data/.gems/gems/rspec-mocks-3.9.1/README.md +463 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
 - data/.gems/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
 - data/.gems/gems/rspec-support-3.9.3/Changelog.md +302 -0
 - data/.gems/gems/rspec-support-3.9.3/LICENSE.md +23 -0
 - data/.gems/gems/rspec-support-3.9.3/README.md +40 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support.rb +149 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/caller_filter.rb +83 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/comparable_version.rb +46 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/differ.rb +215 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/directory_maker.rb +63 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/encoded_string.rb +161 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/fuzzy_matcher.rb +48 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/hunk_generator.rb +47 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/matcher_definition.rb +42 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/method_signature_verifier.rb +438 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/mutex.rb +73 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/object_formatter.rb +275 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/recursive_const_methods.rb +76 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/reentrant_mutex.rb +61 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/ruby_features.rb +190 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/source.rb +75 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/source/location.rb +21 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/source/node.rb +110 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/source/token.rb +87 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec.rb +81 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/formatting_support.rb +9 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/in_sub_process.rb +69 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/library_wide_checks.rb +150 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/shell_out.rb +89 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/stderr_splitter.rb +75 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/string_matcher.rb +46 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/version.rb +7 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/warnings.rb +39 -0
 - data/.gems/gems/rspec-support-3.9.3/lib/rspec/support/with_keywords_when_needed.rb +33 -0
 - data/.gems/specifications/diff-lcs-1.3.gemspec +61 -0
 - data/.gems/specifications/rake-13.0.1.gemspec +26 -0
 - data/.gems/specifications/rspec-3.9.0.gemspec +43 -0
 - data/.gems/specifications/rspec-core-3.9.2.gemspec +63 -0
 - data/.gems/specifications/rspec-expectations-3.9.1.gemspec +51 -0
 - data/.gems/specifications/rspec-mocks-3.9.1.gemspec +51 -0
 - data/.gems/specifications/rspec-support-3.9.3.gemspec +39 -0
 - data/.rakeTasks +7 -0
 - data/.rbenv-gemsets +1 -0
 - data/.rspec +3 -0
 - data/.ruby-version +1 -0
 - data/.travis.yml +6 -0
 - data/CODE_OF_CONDUCT.md +74 -0
 - data/Gemfile +8 -0
 - data/Gemfile.lock +57 -0
 - data/LICENSE.txt +21 -0
 - data/README.md +54 -0
 - data/Rakefile +6 -0
 - data/bin/console +14 -0
 - data/bin/setup +8 -0
 - data/lib/rentdynamics.rb +114 -0
 - data/lib/rentdynamics/version.rb +3 -0
 - data/rentdynamics.gemspec +31 -0
 - metadata +4556 -0
 
| 
         @@ -0,0 +1,51 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
            require "rbconfig"
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            module Rake
         
     | 
| 
      
 5 
     | 
    
         
            +
              # Win 32 interface methods for Rake. Windows specific functionality
         
     | 
| 
      
 6 
     | 
    
         
            +
              # will be placed here to collect that knowledge in one spot.
         
     | 
| 
      
 7 
     | 
    
         
            +
              module Win32 # :nodoc: all
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
                # Error indicating a problem in locating the home directory on a
         
     | 
| 
      
 10 
     | 
    
         
            +
                # Win32 system.
         
     | 
| 
      
 11 
     | 
    
         
            +
                class Win32HomeError < RuntimeError
         
     | 
| 
      
 12 
     | 
    
         
            +
                end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
                class << self
         
     | 
| 
      
 15 
     | 
    
         
            +
                  # True if running on a windows system.
         
     | 
| 
      
 16 
     | 
    
         
            +
                  def windows?
         
     | 
| 
      
 17 
     | 
    
         
            +
                    RbConfig::CONFIG["host_os"] =~ %r!(msdos|mswin|djgpp|mingw|[Ww]indows)!
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                  # The standard directory containing system wide rake files on
         
     | 
| 
      
 21 
     | 
    
         
            +
                  # Win 32 systems. Try the following environment variables (in
         
     | 
| 
      
 22 
     | 
    
         
            +
                  # order):
         
     | 
| 
      
 23 
     | 
    
         
            +
                  #
         
     | 
| 
      
 24 
     | 
    
         
            +
                  # * HOME
         
     | 
| 
      
 25 
     | 
    
         
            +
                  # * HOMEDRIVE + HOMEPATH
         
     | 
| 
      
 26 
     | 
    
         
            +
                  # * APPDATA
         
     | 
| 
      
 27 
     | 
    
         
            +
                  # * USERPROFILE
         
     | 
| 
      
 28 
     | 
    
         
            +
                  #
         
     | 
| 
      
 29 
     | 
    
         
            +
                  # If the above are not defined, the return nil.
         
     | 
| 
      
 30 
     | 
    
         
            +
                  def win32_system_dir #:nodoc:
         
     | 
| 
      
 31 
     | 
    
         
            +
                    win32_shared_path = ENV["HOME"]
         
     | 
| 
      
 32 
     | 
    
         
            +
                    if win32_shared_path.nil? && ENV["HOMEDRIVE"] && ENV["HOMEPATH"]
         
     | 
| 
      
 33 
     | 
    
         
            +
                      win32_shared_path = ENV["HOMEDRIVE"] + ENV["HOMEPATH"]
         
     | 
| 
      
 34 
     | 
    
         
            +
                    end
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                    win32_shared_path ||= ENV["APPDATA"]
         
     | 
| 
      
 37 
     | 
    
         
            +
                    win32_shared_path ||= ENV["USERPROFILE"]
         
     | 
| 
      
 38 
     | 
    
         
            +
                    raise Win32HomeError,
         
     | 
| 
      
 39 
     | 
    
         
            +
                      "Unable to determine home path environment variable." if
         
     | 
| 
      
 40 
     | 
    
         
            +
                        win32_shared_path.nil? or win32_shared_path.empty?
         
     | 
| 
      
 41 
     | 
    
         
            +
                    normalize(File.join(win32_shared_path, "Rake"))
         
     | 
| 
      
 42 
     | 
    
         
            +
                  end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                  # Normalize a win32 path so that the slashes are all forward slashes.
         
     | 
| 
      
 45 
     | 
    
         
            +
                  def normalize(path)
         
     | 
| 
      
 46 
     | 
    
         
            +
                    path.gsub(/\\/, "/")
         
     | 
| 
      
 47 
     | 
    
         
            +
                  end
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                end
         
     | 
| 
      
 50 
     | 
    
         
            +
              end
         
     | 
| 
      
 51 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,42 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
            $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'rake/version'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.name = "rake".freeze
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.version = Rake::VERSION
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.authors = ["Hiroshi SHIBATA".freeze, "Eric Hodel".freeze, "Jim Weirich".freeze]
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.email = ["hsbt@ruby-lang.org".freeze, "drbrain@segment7.net".freeze, "".freeze]
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              s.summary = "Rake is a Make-like program implemented in Ruby".freeze
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.description = <<-DESCRIPTION
         
     | 
| 
      
 13 
     | 
    
         
            +
            Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
         
     | 
| 
      
 14 
     | 
    
         
            +
            specified in standard Ruby syntax.
         
     | 
| 
      
 15 
     | 
    
         
            +
            Rake has the following features:
         
     | 
| 
      
 16 
     | 
    
         
            +
              * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.
         
     | 
| 
      
 17 
     | 
    
         
            +
                No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
         
     | 
| 
      
 18 
     | 
    
         
            +
              * Users can specify tasks with prerequisites.
         
     | 
| 
      
 19 
     | 
    
         
            +
              * Rake supports rule patterns to synthesize implicit tasks.
         
     | 
| 
      
 20 
     | 
    
         
            +
              * Flexible FileLists that act like arrays but know about manipulating file names and paths.
         
     | 
| 
      
 21 
     | 
    
         
            +
              * Supports parallel execution of tasks.
         
     | 
| 
      
 22 
     | 
    
         
            +
              DESCRIPTION
         
     | 
| 
      
 23 
     | 
    
         
            +
              s.homepage = "https://github.com/ruby/rake".freeze
         
     | 
| 
      
 24 
     | 
    
         
            +
              s.licenses = ["MIT".freeze]
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              s.files = %x[git ls-files -z].split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } -
         
     | 
| 
      
 27 
     | 
    
         
            +
                        %w[.rubocop.yml .gitignore .travis.yml appveyor.yml]
         
     | 
| 
      
 28 
     | 
    
         
            +
              s.bindir = "exe"
         
     | 
| 
      
 29 
     | 
    
         
            +
              s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
         
     | 
| 
      
 30 
     | 
    
         
            +
              s.require_paths = ["lib".freeze]
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
              s.required_ruby_version = Gem::Requirement.new(">= 2.0.0".freeze)
         
     | 
| 
      
 33 
     | 
    
         
            +
              s.rubygems_version = "2.6.1".freeze
         
     | 
| 
      
 34 
     | 
    
         
            +
              s.required_rubygems_version = Gem::Requirement.new(">= 1.3.2".freeze)
         
     | 
| 
      
 35 
     | 
    
         
            +
              s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
              s.add_development_dependency(%q<bundler>.freeze)
         
     | 
| 
      
 38 
     | 
    
         
            +
              s.add_development_dependency(%q<minitest>.freeze)
         
     | 
| 
      
 39 
     | 
    
         
            +
              s.add_development_dependency(%q<rdoc>.freeze)
         
     | 
| 
      
 40 
     | 
    
         
            +
              s.add_development_dependency(%q<coveralls>.freeze)
         
     | 
| 
      
 41 
     | 
    
         
            +
              s.add_development_dependency(%q<rubocop>.freeze)
         
     | 
| 
      
 42 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            The MIT License (MIT)
         
     | 
| 
      
 2 
     | 
    
         
            +
            =====================
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Copyright © 2009 Chad Humphries, David Chelimsky  
         
     | 
| 
      
 5 
     | 
    
         
            +
            Copyright © 2006 David Chelimsky, The RSpec Development Team  
         
     | 
| 
      
 6 
     | 
    
         
            +
            Copyright © 2005 Steven Baker
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person
         
     | 
| 
      
 9 
     | 
    
         
            +
            obtaining a copy of this software and associated documentation
         
     | 
| 
      
 10 
     | 
    
         
            +
            files (the “Software”), to deal in the Software without
         
     | 
| 
      
 11 
     | 
    
         
            +
            restriction, including without limitation the rights to use,
         
     | 
| 
      
 12 
     | 
    
         
            +
            copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 13 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the
         
     | 
| 
      
 14 
     | 
    
         
            +
            Software is furnished to do so, subject to the following
         
     | 
| 
      
 15 
     | 
    
         
            +
            conditions:
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be
         
     | 
| 
      
 18 
     | 
    
         
            +
            included in all copies or substantial portions of the Software.
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
         
     | 
| 
      
 21 
     | 
    
         
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
         
     | 
| 
      
 22 
     | 
    
         
            +
            OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         
     | 
| 
      
 23 
     | 
    
         
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
         
     | 
| 
      
 24 
     | 
    
         
            +
            HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
         
     | 
| 
      
 25 
     | 
    
         
            +
            WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
         
     | 
| 
      
 26 
     | 
    
         
            +
            FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
         
     | 
| 
      
 27 
     | 
    
         
            +
            OTHER DEALINGS IN THE SOFTWARE.
         
     | 
| 
         @@ -0,0 +1,43 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # RSpec
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Behaviour Driven Development for Ruby
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            # Description
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            rspec is a meta-gem, which depends on the
         
     | 
| 
      
 8 
     | 
    
         
            +
            [rspec-core](https://github.com/rspec/rspec-core),
         
     | 
| 
      
 9 
     | 
    
         
            +
            [rspec-expectations](https://github.com/rspec/rspec-expectations)
         
     | 
| 
      
 10 
     | 
    
         
            +
            and [rspec-mocks](https://github.com/rspec/rspec-mocks) gems. Each of these
         
     | 
| 
      
 11 
     | 
    
         
            +
            can be installed separately and loaded in isolation using `require`. Among
         
     | 
| 
      
 12 
     | 
    
         
            +
            other benefits, this allows you to use rspec-expectations, for example, in
         
     | 
| 
      
 13 
     | 
    
         
            +
            Test::Unit::TestCase if you happen to prefer that style.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            Conversely, if you like RSpec's approach to declaring example groups and
         
     | 
| 
      
 16 
     | 
    
         
            +
            examples (`describe` and `it`) but prefer Test::Unit assertions and
         
     | 
| 
      
 17 
     | 
    
         
            +
            [mocha](https://github.com/freerange/mocha), [rr](https://github.com/rr/rr)
         
     | 
| 
      
 18 
     | 
    
         
            +
            or [flexmock](https://github.com/jimweirich/flexmock) for mocking, you'll be
         
     | 
| 
      
 19 
     | 
    
         
            +
            able to do that without having to install or load the components of RSpec that
         
     | 
| 
      
 20 
     | 
    
         
            +
            you're not using.
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            ## Documentation
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            See http://rspec.info/documentation/ for links to documentation for all gems.
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            ## Install
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                gem install rspec
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            ## Setup
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                rspec --init
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            ## Contribute
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            * [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev)
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            ## Also see
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            * [https://github.com/rspec/rspec-core](https://github.com/rspec/rspec-core)
         
     | 
| 
      
 41 
     | 
    
         
            +
            * [https://github.com/rspec/rspec-expectations](https://github.com/rspec/rspec-expectations)
         
     | 
| 
      
 42 
     | 
    
         
            +
            * [https://github.com/rspec/rspec-mocks](https://github.com/rspec/rspec-mocks)
         
     | 
| 
      
 43 
     | 
    
         
            +
            * [https://github.com/rspec/rspec-rails](https://github.com/rspec/rspec-rails)
         
     | 
| 
         @@ -0,0 +1,2291 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ### 3.9.2 / 2020-05-02
         
     | 
| 
      
 2 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.1...v3.9.2)
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            * Emit a warning when `around` hook is used with `:context` scope
         
     | 
| 
      
 7 
     | 
    
         
            +
              (Phil Pirozhkov, #2687)
         
     | 
| 
      
 8 
     | 
    
         
            +
            * Prevent invalid implementations of `Exception#cause` from being treated as a
         
     | 
| 
      
 9 
     | 
    
         
            +
              valid cause (and causing strange errors) in `RSpec::Core::Formatters::ExceptionPresenter`.
         
     | 
| 
      
 10 
     | 
    
         
            +
              (Jon Rowe, #2703)
         
     | 
| 
      
 11 
     | 
    
         
            +
            * Correctly detect patterns when `rspec_opts` is an array in `RSpec::Core::RakeTask`.
         
     | 
| 
      
 12 
     | 
    
         
            +
              (Marc-André Lafortune, #2704)
         
     | 
| 
      
 13 
     | 
    
         
            +
            * Make `RSpec.clear_examples` reset example counts for example groups. This fixes
         
     | 
| 
      
 14 
     | 
    
         
            +
              an issue with re-running specs not matching ids. (Agis Anastasopoulos, #2723)
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            ### 3.9.1 / 2019-12-28
         
     | 
| 
      
 17 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.0...v3.9.1)
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            * Prevent bisect command from blocking when number of specs exceeds file
         
     | 
| 
      
 22 
     | 
    
         
            +
              descriptor limit on OSX or Linux. (Benoit Tigeot, #2669)
         
     | 
| 
      
 23 
     | 
    
         
            +
            * Prevent warnings being issued on Ruby 2.7.0. (Jon Rowe, #2680)
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            ### 3.9.0 / 2019-10-07
         
     | 
| 
      
 26 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.2...v3.9.0)
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            * Improve the handling of errors during loading support files, if a file
         
     | 
| 
      
 31 
     | 
    
         
            +
              errors before loading specs, RSpec will now skip loading the specs.
         
     | 
| 
      
 32 
     | 
    
         
            +
              (David Rodríguez, #2568)
         
     | 
| 
      
 33 
     | 
    
         
            +
            * Add support for --example-matches to run examples by regular expression.
         
     | 
| 
      
 34 
     | 
    
         
            +
              (Sam Joseph, Matt Rider, @okothkongo1, #2586)
         
     | 
| 
      
 35 
     | 
    
         
            +
            * Add `did_you_mean` suggestions for file names encountering a `LoadError`
         
     | 
| 
      
 36 
     | 
    
         
            +
              outside of examples. (@obromios, #2601)
         
     | 
| 
      
 37 
     | 
    
         
            +
            * Add a minimalist quick fix style formatter, only outputs failures as
         
     | 
| 
      
 38 
     | 
    
         
            +
              `file:line:message`. (Romain Tartière, #2614)
         
     | 
| 
      
 39 
     | 
    
         
            +
            * Convert string number values to integer when used for `RSpec::Configuration#fail_fast`
         
     | 
| 
      
 40 
     | 
    
         
            +
              (Viktor Fonic, #2634)
         
     | 
| 
      
 41 
     | 
    
         
            +
            * Issue warning when invalid values are used for `RSpec::Configuration#fail_fast`
         
     | 
| 
      
 42 
     | 
    
         
            +
              (Viktor Fonic, #2634)
         
     | 
| 
      
 43 
     | 
    
         
            +
            * Add support for running the Rake task in a clean environment.
         
     | 
| 
      
 44 
     | 
    
         
            +
              (Jon Rowe, #2632)
         
     | 
| 
      
 45 
     | 
    
         
            +
            * Indent messages by there example group / example in the documentation formatter.
         
     | 
| 
      
 46 
     | 
    
         
            +
              (Samuel Williams, #2649)
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            ### 3.8.2 / 2019-06-29
         
     | 
| 
      
 49 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.1...v3.8.2)
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            * Fix `config.define_derived_metadata` so that cascades are not triggered
         
     | 
| 
      
 54 
     | 
    
         
            +
              until metadata has been assigned to the example or example group
         
     | 
| 
      
 55 
     | 
    
         
            +
              (Myron Marston, #2635).
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            ### 3.8.1 / 2019-06-13
         
     | 
| 
      
 58 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.0...v3.8.1)
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
            * Handle RSpec description(s) with japanese chars in CP932 encoded files.
         
     | 
| 
      
 63 
     | 
    
         
            +
              (Benoit Tigeot, #2575)
         
     | 
| 
      
 64 
     | 
    
         
            +
            * When defining `let` methods that overwrite an existing method, prevent
         
     | 
| 
      
 65 
     | 
    
         
            +
              a warning being issued by removing the old definition. (Jon Rowe, #2593)
         
     | 
| 
      
 66 
     | 
    
         
            +
            * Prevent warning on Ruby 2.6.0-rc1 (Keiji Yoshimi, #2582)
         
     | 
| 
      
 67 
     | 
    
         
            +
            * Fix `config.define_derived_metadata` so that it supports cascades.
         
     | 
| 
      
 68 
     | 
    
         
            +
              (Myron Marston, #2630).
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            ### 3.8.0 / 2018-08-04
         
     | 
| 
      
 71 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.1...v3.8.0)
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            * Improve shell escaping used by `RSpec::Core::RakeTask` and `--bisect` so
         
     | 
| 
      
 76 
     | 
    
         
            +
              that it works on `Pathname` objects. (Andrew Vit, #2479)
         
     | 
| 
      
 77 
     | 
    
         
            +
            * Nicely format errors encountered while loading files specified
         
     | 
| 
      
 78 
     | 
    
         
            +
              by `--require` option.  (Myron Marston, #2504)
         
     | 
| 
      
 79 
     | 
    
         
            +
            * Significantly improve the performance of `--bisect` on platforms that
         
     | 
| 
      
 80 
     | 
    
         
            +
              support forking by replacing the shell-based runner with one that uses
         
     | 
| 
      
 81 
     | 
    
         
            +
              forking so that RSpec and the application environment can be booted only
         
     | 
| 
      
 82 
     | 
    
         
            +
              once, instead of once per spec run. (Myron Marston, #2511)
         
     | 
| 
      
 83 
     | 
    
         
            +
            * Provide a configuration API to pick which bisect runner is used for
         
     | 
| 
      
 84 
     | 
    
         
            +
              `--bisect`. Pick a runner via `config.bisect_runner = :shell` or
         
     | 
| 
      
 85 
     | 
    
         
            +
              `config.bisect_runner = :fork` in a file loaded by a `--require`
         
     | 
| 
      
 86 
     | 
    
         
            +
              option passed at the command line or set in `.rspec`. (Myron Marston, #2511)
         
     | 
| 
      
 87 
     | 
    
         
            +
            * Support the [XDG Base Directory
         
     | 
| 
      
 88 
     | 
    
         
            +
              Specification](https://specifications.freedesktop.org/basedir-spec/latest/)
         
     | 
| 
      
 89 
     | 
    
         
            +
              for the global options file. `~/.rspec` is still supported when no
         
     | 
| 
      
 90 
     | 
    
         
            +
              options file is found in `$XDG_CONFIG_HOME/rspec/options` (Magnus Bergmark, #2538)
         
     | 
| 
      
 91 
     | 
    
         
            +
            * Extract `RSpec.world.prepare_example_filtering` that sets up the
         
     | 
| 
      
 92 
     | 
    
         
            +
              example filtering for custom RSpec runners. (Oleg Pudeyev, #2552)
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
            * Prevent an `ArgumentError` when truncating backtraces with two identical
         
     | 
| 
      
 97 
     | 
    
         
            +
              backtraces. (Systho, #2515, Benoit Tigeot, #2539)
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            ### 3.7.1 / 2018-01-02
         
     | 
| 
      
 100 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...v3.7.1)
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            * Work around duplicate config hook regression introduced
         
     | 
| 
      
 105 
     | 
    
         
            +
              by Ruby 2.5's lazy proc allocation. (Myron Marston, #2497)
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            ### 3.7.0 / 2017-10-17
         
     | 
| 
      
 108 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0...v3.7.0)
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            * Add `-n` alias for `--next-failure`. (Ian Ker-Seymer, #2434)
         
     | 
| 
      
 113 
     | 
    
         
            +
            * Improve compatibility with `--enable-frozen-string-literal` option
         
     | 
| 
      
 114 
     | 
    
         
            +
              on Ruby 2.3+. (Pat Allan, #2425, #2427, #2437)
         
     | 
| 
      
 115 
     | 
    
         
            +
            * Do not run `:context` hooks for example groups that have been skipped.
         
     | 
| 
      
 116 
     | 
    
         
            +
              (Devon Estes, #2442)
         
     | 
| 
      
 117 
     | 
    
         
            +
            * Add `errors_outside_of_examples_count` to the JSON formatter.
         
     | 
| 
      
 118 
     | 
    
         
            +
              (Takeshi Arabiki, #2448)
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 121 
     | 
    
         
            +
             
     | 
| 
      
 122 
     | 
    
         
            +
            * Improve compatibility with frozen string literal flag. (#2425, Pat Allan)
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            ### 3.6.0 / 2017-05-04
         
     | 
| 
      
 125 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta2...v3.6.0)
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
            * Add seed information to JSON formatter output. (#2388, Mitsutaka Mimura)
         
     | 
| 
      
 130 
     | 
    
         
            +
            * Include example id in the JSON formatter output. (#2369, Xavier Shay)
         
     | 
| 
      
 131 
     | 
    
         
            +
            * Respect changes to `config.output_stream` after formatters have been
         
     | 
| 
      
 132 
     | 
    
         
            +
              setup. (#2401, #2419, Ilya Lavrov)
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            * Delay formatter loading until the last minute to allow accessing the reporter
         
     | 
| 
      
 137 
     | 
    
         
            +
              without triggering formatter setup. (Jon Rowe, #2243)
         
     | 
| 
      
 138 
     | 
    
         
            +
            * Ensure context hook failures running before an example can access the
         
     | 
| 
      
 139 
     | 
    
         
            +
              reporter. (Jon Jensen, #2387)
         
     | 
| 
      
 140 
     | 
    
         
            +
            * Multiple fixes to allow using the runner multiple times within the same
         
     | 
| 
      
 141 
     | 
    
         
            +
              process: `RSpec.clear_examples` resets the formatter and no longer clears
         
     | 
| 
      
 142 
     | 
    
         
            +
              shared examples, and streams can be used across multiple runs rather than
         
     | 
| 
      
 143 
     | 
    
         
            +
              being closed after the first. (#2368, Xavier Shay)
         
     | 
| 
      
 144 
     | 
    
         
            +
            * Prevent unexpected `example_group_finished` notifications causing an error.
         
     | 
| 
      
 145 
     | 
    
         
            +
              (#2396, VTJamie)
         
     | 
| 
      
 146 
     | 
    
         
            +
            * Fix bugs where `config.when_first_matching_example_defined` hooks would fire
         
     | 
| 
      
 147 
     | 
    
         
            +
              multiple times in some cases. (Yuji Nakayama, #2400)
         
     | 
| 
      
 148 
     | 
    
         
            +
            * Default `last_run_status` to "unknown" when the `status` field in the
         
     | 
| 
      
 149 
     | 
    
         
            +
              persistence file contains an unrecognized value. (#2360, matrinox)
         
     | 
| 
      
 150 
     | 
    
         
            +
            * Prevent `let` from defining an `initialize` method. (#2414, Jon Rowe)
         
     | 
| 
      
 151 
     | 
    
         
            +
             
     | 
| 
      
 152 
     | 
    
         
            +
            ### 3.6.0.beta2 / 2016-12-12
         
     | 
| 
      
 153 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta1...v3.6.0.beta2)
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
            * Include count of errors occurring outside examples in default summaries.
         
     | 
| 
      
 158 
     | 
    
         
            +
              (#2351, Jon Rowe)
         
     | 
| 
      
 159 
     | 
    
         
            +
            * Warn when including shared example groups recursively. (#2356, Jon Rowe)
         
     | 
| 
      
 160 
     | 
    
         
            +
            * Improve failure snippet syntax highlighting with CodeRay to highlight
         
     | 
| 
      
 161 
     | 
    
         
            +
              RSpec "keywords" like `expect`. (#2358, Myron Marston)
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
            ### 3.6.0.beta1 / 2016-10-09
         
     | 
| 
      
 164 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.4...v3.6.0.beta1)
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
            * Warn when duplicate shared examples definitions are loaded due to being
         
     | 
| 
      
 169 
     | 
    
         
            +
              defined in files matching the spec pattern (e.g. `_spec.rb`) (#2278, Devon Estes)
         
     | 
| 
      
 170 
     | 
    
         
            +
            * Improve metadata filtering so that it can match against any object
         
     | 
| 
      
 171 
     | 
    
         
            +
              that implements `===` instead of treating regular expressions as
         
     | 
| 
      
 172 
     | 
    
         
            +
              special. (Myron Marston, #2294)
         
     | 
| 
      
 173 
     | 
    
         
            +
            * Improve `rspec -v` so that it prints out the versions of each part of
         
     | 
| 
      
 174 
     | 
    
         
            +
              RSpec to prevent confusion. (Myron Marston, #2304)
         
     | 
| 
      
 175 
     | 
    
         
            +
            * Add `config.fail_if_no_examples` option which causes RSpec to fail if
         
     | 
| 
      
 176 
     | 
    
         
            +
              no examples are found. (Ewa Czechowska, #2302)
         
     | 
| 
      
 177 
     | 
    
         
            +
            * Nicely format errors encountered while loading spec files.
         
     | 
| 
      
 178 
     | 
    
         
            +
              (Myron Marston, #2323)
         
     | 
| 
      
 179 
     | 
    
         
            +
            * Improve the API for enabling and disabling color output (Josh
         
     | 
| 
      
 180 
     | 
    
         
            +
              Justice, #2321):
         
     | 
| 
      
 181 
     | 
    
         
            +
              * Automatically enable color if the output is a TTY, since color is
         
     | 
| 
      
 182 
     | 
    
         
            +
                nearly always desirable if the output can handle it.
         
     | 
| 
      
 183 
     | 
    
         
            +
              * Introduce new CLI flag to force color on (`--force-color`), even
         
     | 
| 
      
 184 
     | 
    
         
            +
                if the output is not a TTY. `--no-color` continues to work as well.
         
     | 
| 
      
 185 
     | 
    
         
            +
              * Introduce `config.color_mode` for configuring the color from Ruby.
         
     | 
| 
      
 186 
     | 
    
         
            +
                `:automatic` is the default and will produce color if the output is
         
     | 
| 
      
 187 
     | 
    
         
            +
                a TTY. `:on` forces it on and `:off` forces it off.
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
            ### 3.5.4 / 2016-09-30
         
     | 
| 
      
 190 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.3...v3.5.4)
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
            * Remove accumulated `ExampleGroup` constants when reseting RSpec,
         
     | 
| 
      
 195 
     | 
    
         
            +
              preventing a memory leak. (TravisSpangle, #2328)
         
     | 
| 
      
 196 
     | 
    
         
            +
             
     | 
| 
      
 197 
     | 
    
         
            +
            ### 3.5.3 / 2016-09-02
         
     | 
| 
      
 198 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.2...v3.5.3)
         
     | 
| 
      
 199 
     | 
    
         
            +
             
     | 
| 
      
 200 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
            * When applying shared group metadata to a host group, overwrite
         
     | 
| 
      
 203 
     | 
    
         
            +
              conflicting keys if the value in the host group was inherited from
         
     | 
| 
      
 204 
     | 
    
         
            +
              a parent group instead of being specified at that level.
         
     | 
| 
      
 205 
     | 
    
         
            +
              (Myron Marston, #2307)
         
     | 
| 
      
 206 
     | 
    
         
            +
            * Handle errors in `:suite` hooks and provide the same nicely formatted
         
     | 
| 
      
 207 
     | 
    
         
            +
              output as errors that happen in examples. (Myron Marston, #2316)
         
     | 
| 
      
 208 
     | 
    
         
            +
            * Set the exit status to non-zero when an error occurs in an
         
     | 
| 
      
 209 
     | 
    
         
            +
              `after(:context)` hook. (Myron Marston, #2320)
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
            ### 3.5.2 / 2016-07-28
         
     | 
| 
      
 212 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.1...v3.5.2)
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 215 
     | 
    
         
            +
             
     | 
| 
      
 216 
     | 
    
         
            +
            * Wait to report `example_finished` until the example's `execution_result`
         
     | 
| 
      
 217 
     | 
    
         
            +
              has been completely filled in. (Myron Marston, #2291)
         
     | 
| 
      
 218 
     | 
    
         
            +
            * Make sure example block is still available when using `duplicate_with`
         
     | 
| 
      
 219 
     | 
    
         
            +
              to clone examples. (bootstraponline, #2298)
         
     | 
| 
      
 220 
     | 
    
         
            +
            * Don't include the default `--pattern` in the Rake task when
         
     | 
| 
      
 221 
     | 
    
         
            +
              `rspec_opts` specifies its own. (Jon Rowe, #2305)
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
            ### 3.5.1 / 2016-07-06
         
     | 
| 
      
 224 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0...v3.5.1)
         
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 227 
     | 
    
         
            +
             
     | 
| 
      
 228 
     | 
    
         
            +
            * Ensure that config hooks that are added to existing example groups are
         
     | 
| 
      
 229 
     | 
    
         
            +
              added only once. (Eugene Kenny, #2280)
         
     | 
| 
      
 230 
     | 
    
         
            +
             
     | 
| 
      
 231 
     | 
    
         
            +
            ### 3.5.0 / 2016-07-01
         
     | 
| 
      
 232 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta4...v3.5.0)
         
     | 
| 
      
 233 
     | 
    
         
            +
             
     | 
| 
      
 234 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
            * Include any `SPEC_OPTS` in reproduction command printed at the end of
         
     | 
| 
      
 237 
     | 
    
         
            +
              a bisect run. (Simon Coffey, #2274)
         
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
      
 239 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
            * Handle `--bisect` in `SPEC_OPTS` environment variable correctly so as
         
     | 
| 
      
 242 
     | 
    
         
            +
              to avoid infinite recursion. (Simon Coffey, #2271)
         
     | 
| 
      
 243 
     | 
    
         
            +
             
     | 
| 
      
 244 
     | 
    
         
            +
            ### 3.5.0.beta4 / 2016-06-05
         
     | 
| 
      
 245 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta3...v3.5.0.beta4)
         
     | 
| 
      
 246 
     | 
    
         
            +
             
     | 
| 
      
 247 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 248 
     | 
    
         
            +
             
     | 
| 
      
 249 
     | 
    
         
            +
            * Filter out bundler stackframes from backtraces by default, since
         
     | 
| 
      
 250 
     | 
    
         
            +
              Bundler 1.12 now includes its own frames in stack traces produced
         
     | 
| 
      
 251 
     | 
    
         
            +
              by using `bundle exec`. (Myron Marston, #2240)
         
     | 
| 
      
 252 
     | 
    
         
            +
            * HTML Formatter uses exception presenter to get failure message
         
     | 
| 
      
 253 
     | 
    
         
            +
              for consistency with other formatters. (@mrageh, #2222)
         
     | 
| 
      
 254 
     | 
    
         
            +
            * Load spec files in the order of the directories or files passed
         
     | 
| 
      
 255 
     | 
    
         
            +
              at the command line, making it easy to make some specs run before
         
     | 
| 
      
 256 
     | 
    
         
            +
              others in a one-off manner.  For example, `rspec spec/unit
         
     | 
| 
      
 257 
     | 
    
         
            +
              spec/acceptance --order defined` will run unit specs before acceptance
         
     | 
| 
      
 258 
     | 
    
         
            +
              specs. (Myron Marston, #2253)
         
     | 
| 
      
 259 
     | 
    
         
            +
            * Add new `config.include_context` API for configuring global or
         
     | 
| 
      
 260 
     | 
    
         
            +
              filtered inclusion of shared contexts in example groups.
         
     | 
| 
      
 261 
     | 
    
         
            +
              (Myron Marston, #2256)
         
     | 
| 
      
 262 
     | 
    
         
            +
            * Add new `config.shared_context_metadata_behavior = :apply_to_host_groups`
         
     | 
| 
      
 263 
     | 
    
         
            +
              option, which causes shared context metadata to be inherited by the
         
     | 
| 
      
 264 
     | 
    
         
            +
              metadata hash of all host groups and examples instead of configuring
         
     | 
| 
      
 265 
     | 
    
         
            +
              implicit auto-inclusion based on the passed metadata. (Myron Marston, #2256)
         
     | 
| 
      
 266 
     | 
    
         
            +
             
     | 
| 
      
 267 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
      
 269 
     | 
    
         
            +
            * Fix `--bisect` so it works on large spec suites that were previously triggering
         
     | 
| 
      
 270 
     | 
    
         
            +
              "Argument list too long errors" due to all the spec locations being passed as
         
     | 
| 
      
 271 
     | 
    
         
            +
              CLI args. (Matt Jones, #2223).
         
     | 
| 
      
 272 
     | 
    
         
            +
            * Fix deprecated `:example_group`-based filtering so that it properly
         
     | 
| 
      
 273 
     | 
    
         
            +
              applies to matching example groups. (Myron Marston, #2234)
         
     | 
| 
      
 274 
     | 
    
         
            +
            * Fix `NoMethodError` caused by Java backtraces on JRuby. (Michele Piccirillo, #2244)
         
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
            ### 3.5.0.beta3 / 2016-04-02
         
     | 
| 
      
 277 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta2...v3.5.0.beta3)
         
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
      
 279 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
      
 281 
     | 
    
         
            +
            * Add new `config.filter_run_when_matching` API, intended to replace
         
     | 
| 
      
 282 
     | 
    
         
            +
              the combination of `config.filter_run` and
         
     | 
| 
      
 283 
     | 
    
         
            +
              `config.run_all_when_everything_filtered` (Myron Marston, #2206)
         
     | 
| 
      
 284 
     | 
    
         
            +
             
     | 
| 
      
 285 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 286 
     | 
    
         
            +
             
     | 
| 
      
 287 
     | 
    
         
            +
            * Use the encoded string logic for source extraction. (Jon Rowe, #2183)
         
     | 
| 
      
 288 
     | 
    
         
            +
            * Fix rounding issue in duration formatting helper. (Fabersky, Jon Rowe, #2208)
         
     | 
| 
      
 289 
     | 
    
         
            +
            * Fix failure snippet extraction so that `def-end` snippets
         
     | 
| 
      
 290 
     | 
    
         
            +
              ending with `end`-only line can be extracted properly.
         
     | 
| 
      
 291 
     | 
    
         
            +
              (Yuji Nakayama, #2215)
         
     | 
| 
      
 292 
     | 
    
         
            +
             
     | 
| 
      
 293 
     | 
    
         
            +
            ### 3.5.0.beta2 / 2016-03-10
         
     | 
| 
      
 294 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta1...v3.5.0.beta2)
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 297 
     | 
    
         
            +
             
     | 
| 
      
 298 
     | 
    
         
            +
            * Remove unneeded `:execution_result` example group metadata, saving a
         
     | 
| 
      
 299 
     | 
    
         
            +
              bit of memory. (Myron Marston, #2172)
         
     | 
| 
      
 300 
     | 
    
         
            +
            * Apply hooks registered with `config` to previously defined groups.
         
     | 
| 
      
 301 
     | 
    
         
            +
              (Myron Marston, #2189)
         
     | 
| 
      
 302 
     | 
    
         
            +
            * `RSpec::Core::Configuration#reporter` is now public API under SemVer.
         
     | 
| 
      
 303 
     | 
    
         
            +
              (Jon Rowe, #2193)
         
     | 
| 
      
 304 
     | 
    
         
            +
            * Add new `config.when_first_matching_example_defined` hook. (Myron
         
     | 
| 
      
 305 
     | 
    
         
            +
              Marston, #2175)
         
     | 
| 
      
 306 
     | 
    
         
            +
             
     | 
| 
      
 307 
     | 
    
         
            +
            ### 3.5.0.beta1 / 2016-02-06
         
     | 
| 
      
 308 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.4...v3.5.0.beta1)
         
     | 
| 
      
 309 
     | 
    
         
            +
             
     | 
| 
      
 310 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 311 
     | 
    
         
            +
             
     | 
| 
      
 312 
     | 
    
         
            +
            * Add `RSpec::Core::ExampleGroup.currently_executing_a_context_hook?`,
         
     | 
| 
      
 313 
     | 
    
         
            +
              primarily for use by rspec-rails. (Sam Phippen, #2131)
         
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
            * Ensure `MultipleExceptionError` does not contain a recursive reference
         
     | 
| 
      
 318 
     | 
    
         
            +
              to itself. (Sam Phippen, #2133)
         
     | 
| 
      
 319 
     | 
    
         
            +
             
     | 
| 
      
 320 
     | 
    
         
            +
            ### 3.4.4 / 2016-03-09
         
     | 
| 
      
 321 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.3...v3.4.4)
         
     | 
| 
      
 322 
     | 
    
         
            +
             
     | 
| 
      
 323 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 324 
     | 
    
         
            +
             
     | 
| 
      
 325 
     | 
    
         
            +
            * Fix `RSpec::Core::RakeTask` so that it works with Rake 11.
         
     | 
| 
      
 326 
     | 
    
         
            +
              (Travis Grathwell, #2197)
         
     | 
| 
      
 327 
     | 
    
         
            +
             
     | 
| 
      
 328 
     | 
    
         
            +
            ### 3.4.3 / 2016-02-19
         
     | 
| 
      
 329 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.2...v3.4.3)
         
     | 
| 
      
 330 
     | 
    
         
            +
             
     | 
| 
      
 331 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 332 
     | 
    
         
            +
             
     | 
| 
      
 333 
     | 
    
         
            +
            * Prevent a `TypeError` from occurring when running via the rake task when
         
     | 
| 
      
 334 
     | 
    
         
            +
              Ruby crashes. (Patrik Wenger, #2161)
         
     | 
| 
      
 335 
     | 
    
         
            +
            * Only consider example and group declaration lines from a specific file
         
     | 
| 
      
 336 
     | 
    
         
            +
              when applying line number filtering, instead of considering all
         
     | 
| 
      
 337 
     | 
    
         
            +
              declaration lines from all spec files. (Myron Marston, #2170)
         
     | 
| 
      
 338 
     | 
    
         
            +
            * Fix failure snippet extraction so that snippets that contain `do-end` style
         
     | 
| 
      
 339 
     | 
    
         
            +
              block and end with `end`-only line can be extracted properly.
         
     | 
| 
      
 340 
     | 
    
         
            +
              (Yuji Nakayama, #2173)
         
     | 
| 
      
 341 
     | 
    
         
            +
            * Prevent infinite recursion when an exception is caused by itself.
         
     | 
| 
      
 342 
     | 
    
         
            +
              (Jon Rowe, #2128)
         
     | 
| 
      
 343 
     | 
    
         
            +
             
     | 
| 
      
 344 
     | 
    
         
            +
            ### 3.4.2 / 2016-01-26
         
     | 
| 
      
 345 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)
         
     | 
| 
      
 346 
     | 
    
         
            +
             
     | 
| 
      
 347 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 348 
     | 
    
         
            +
             
     | 
| 
      
 349 
     | 
    
         
            +
            * Fix `rspec --profile` when an example calls `abort` or `exit`.
         
     | 
| 
      
 350 
     | 
    
         
            +
              (Bradley Schaefer, #2144)
         
     | 
| 
      
 351 
     | 
    
         
            +
            * Fix `--drb` so that when no DRb server is running, it prevents
         
     | 
| 
      
 352 
     | 
    
         
            +
              the DRb connection error from being listed as the cause of all
         
     | 
| 
      
 353 
     | 
    
         
            +
              expectation failures. (Myron Marston, #2156)
         
     | 
| 
      
 354 
     | 
    
         
            +
            * Fix syntax highlighter so that it works when the `coderay` gem is
         
     | 
| 
      
 355 
     | 
    
         
            +
              installed as a rubygem but not already available on your load path
         
     | 
| 
      
 356 
     | 
    
         
            +
              (as happens when you use bundler). (Myron Marston, #2159)
         
     | 
| 
      
 357 
     | 
    
         
            +
             
     | 
| 
      
 358 
     | 
    
         
            +
            ### 3.4.1 / 2015-11-18
         
     | 
| 
      
 359 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.0...v3.4.1)
         
     | 
| 
      
 360 
     | 
    
         
            +
             
     | 
| 
      
 361 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 362 
     | 
    
         
            +
             
     | 
| 
      
 363 
     | 
    
         
            +
            * Fix backtrace formatter to handle backtraces that are `nil`.
         
     | 
| 
      
 364 
     | 
    
         
            +
              (Myron Marston, #2118)
         
     | 
| 
      
 365 
     | 
    
         
            +
             
     | 
| 
      
 366 
     | 
    
         
            +
            ### 3.4.0 / 2015-11-11
         
     | 
| 
      
 367 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.2...v3.4.0)
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 370 
     | 
    
         
            +
             
     | 
| 
      
 371 
     | 
    
         
            +
            * Combine multiple `--pattern` arguments making them equivalent to
         
     | 
| 
      
 372 
     | 
    
         
            +
              `--pattern=1,2,...,n`. (Jon Rowe, #2002)
         
     | 
| 
      
 373 
     | 
    
         
            +
            * Improve `inspect` and `to_s` output for `RSpec::Core::Example`
         
     | 
| 
      
 374 
     | 
    
         
            +
              objects, replacing Ruby's excessively verbose output. (Gavin Miller, #1922)
         
     | 
| 
      
 375 
     | 
    
         
            +
            * Add `silence_filter_announcements` configuration option.
         
     | 
| 
      
 376 
     | 
    
         
            +
              (David Raffensperger, #2007)
         
     | 
| 
      
 377 
     | 
    
         
            +
            * Add optional `example_finished` notification to the reporter protocol for
         
     | 
| 
      
 378 
     | 
    
         
            +
              when you don't care about the example outcome. (Jon Rowe, #2013)
         
     | 
| 
      
 379 
     | 
    
         
            +
            * Switch `--bisect` to a recursion-based bisection algorithm rather than
         
     | 
| 
      
 380 
     | 
    
         
            +
              a permutation-based one. This better handles cases where an example
         
     | 
| 
      
 381 
     | 
    
         
            +
              depends upon multiple other examples instead of just one and minimizes
         
     | 
| 
      
 382 
     | 
    
         
            +
              the number of runs necessary to determine that an example set cannot be
         
     | 
| 
      
 383 
     | 
    
         
            +
              minimized further. (Simon Coffey, #1997)
         
     | 
| 
      
 384 
     | 
    
         
            +
            * Allow simple filters (e.g. `:symbol` key only) to be triggered by truthey
         
     | 
| 
      
 385 
     | 
    
         
            +
              values. (Tim Mertens, #2035)
         
     | 
| 
      
 386 
     | 
    
         
            +
            * Remove unneeded warning about need for `ansicon` on Windows when using
         
     | 
| 
      
 387 
     | 
    
         
            +
              RSpec's `--color` option. (Ashley Engelund, #2038)
         
     | 
| 
      
 388 
     | 
    
         
            +
            * Add option to configure RSpec to raise errors when issuing warnings.
         
     | 
| 
      
 389 
     | 
    
         
            +
              (Jon Rowe, #2052)
         
     | 
| 
      
 390 
     | 
    
         
            +
            * Append the root `cause` of a failure or error to the printed failure
         
     | 
| 
      
 391 
     | 
    
         
            +
              output when a `cause` is available. (Adam Magan)
         
     | 
| 
      
 392 
     | 
    
         
            +
            * Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
         
     | 
| 
      
 393 
     | 
    
         
            +
              `SystemExit`. It is dangerous to interfere with these. (Myron Marston, #2063)
         
     | 
| 
      
 394 
     | 
    
         
            +
            * Add `config.project_source_dirs` setting which RSpec uses to determine
         
     | 
| 
      
 395 
     | 
    
         
            +
              if a backtrace line comes from your project source or from some
         
     | 
| 
      
 396 
     | 
    
         
            +
              external library. It defaults to `spec`, `lib` and `app` but can be
         
     | 
| 
      
 397 
     | 
    
         
            +
              configured differently. (Myron Marston, #2088)
         
     | 
| 
      
 398 
     | 
    
         
            +
            * Improve failure line detection so that it looks for the failure line
         
     | 
| 
      
 399 
     | 
    
         
            +
              in any project source directory instead of just in the spec file.
         
     | 
| 
      
 400 
     | 
    
         
            +
              In addition, if no backtrace lines can be found from a project source
         
     | 
| 
      
 401 
     | 
    
         
            +
              file, we fall back to displaying the source of the first backtrace
         
     | 
| 
      
 402 
     | 
    
         
            +
              line. This should virtually eliminate the "Unable to find matching
         
     | 
| 
      
 403 
     | 
    
         
            +
              line from backtrace" messages. (Myron Marston, #2088)
         
     | 
| 
      
 404 
     | 
    
         
            +
            * Add support for `:extra_failure_lines` example metadata that will
         
     | 
| 
      
 405 
     | 
    
         
            +
              be appended to the failure output. (bootstraponline, #2092).
         
     | 
| 
      
 406 
     | 
    
         
            +
            * Add `RSpec::Core::Example#duplicate_with` to produce new examples
         
     | 
| 
      
 407 
     | 
    
         
            +
              with cloned metadata. (bootstraponline, #2098)
         
     | 
| 
      
 408 
     | 
    
         
            +
            * Add `RSpec::Core::Configuration#on_example_group_definition` to register
         
     | 
| 
      
 409 
     | 
    
         
            +
              hooks to be invoked when example groups are created. (bootstraponline, #2094)
         
     | 
| 
      
 410 
     | 
    
         
            +
            * Add `add_example` and `remove_example` to `RSpec::Core::ExampleGroup` to
         
     | 
| 
      
 411 
     | 
    
         
            +
              allow  manipulating an example groups examples. (bootstraponline, #2095)
         
     | 
| 
      
 412 
     | 
    
         
            +
            * Display multiline failure source lines in failure output when Ripper is
         
     | 
| 
      
 413 
     | 
    
         
            +
              available (MRI >= 1.9.2, and JRuby >= 1.7.5 && < 9.0.0.0.rc1).
         
     | 
| 
      
 414 
     | 
    
         
            +
              (Yuji Nakayama, #2083)
         
     | 
| 
      
 415 
     | 
    
         
            +
            * Add `max_displayed_failure_line_count` configuration option
         
     | 
| 
      
 416 
     | 
    
         
            +
              (defaults to 10). (Yuji Nakayama, #2083)
         
     | 
| 
      
 417 
     | 
    
         
            +
            * Enhance `fail_fast` option so it can take a number (e.g. `--fail-fast=3`)
         
     | 
| 
      
 418 
     | 
    
         
            +
              to force the run to abort after the specified number of failures.
         
     | 
| 
      
 419 
     | 
    
         
            +
              (Jack Scotti, #2065)
         
     | 
| 
      
 420 
     | 
    
         
            +
            * Syntax highlight the failure snippets in text formatters when `color`
         
     | 
| 
      
 421 
     | 
    
         
            +
              is enabled and the `coderay` gem is installed on a POSIX system.
         
     | 
| 
      
 422 
     | 
    
         
            +
              (Myron Marston, #2109)
         
     | 
| 
      
 423 
     | 
    
         
            +
             
     | 
| 
      
 424 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 425 
     | 
    
         
            +
             
     | 
| 
      
 426 
     | 
    
         
            +
            * Lock `example_status_persistence_file` when reading from and writing
         
     | 
| 
      
 427 
     | 
    
         
            +
              to it to prevent race conditions when multiple processes try to use
         
     | 
| 
      
 428 
     | 
    
         
            +
              it. (Ben Woosley, #2029)
         
     | 
| 
      
 429 
     | 
    
         
            +
            * Fix regression in 3.3 that caused spec file names with square brackets in
         
     | 
| 
      
 430 
     | 
    
         
            +
              them (such as `1[]_spec.rb`) to not be loaded properly. (Myron Marston, #2041)
         
     | 
| 
      
 431 
     | 
    
         
            +
            * Fix output encoding issue caused by ASCII literal on 1.9.3 (Jon Rowe, #2072)
         
     | 
| 
      
 432 
     | 
    
         
            +
            * Fix requires in `rspec/core/rake_task.rb` to avoid double requires
         
     | 
| 
      
 433 
     | 
    
         
            +
              seen by some users. (Myron Marston, #2101)
         
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
            ### 3.3.2 / 2015-07-15
         
     | 
| 
      
 436 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)
         
     | 
| 
      
 437 
     | 
    
         
            +
             
     | 
| 
      
 438 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 439 
     | 
    
         
            +
             
     | 
| 
      
 440 
     | 
    
         
            +
            * Fix formatters to handle exceptions for which `backtrace` returns `nil`.
         
     | 
| 
      
 441 
     | 
    
         
            +
              (Myron Marston, #2023)
         
     | 
| 
      
 442 
     | 
    
         
            +
            * Fix duplicate formatter detection so that it allows subclasses of formatters
         
     | 
| 
      
 443 
     | 
    
         
            +
              to be added. (Sebastián Tello, #2019)
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
            ### 3.3.1 / 2015-06-18
         
     | 
| 
      
 446 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)
         
     | 
| 
      
 447 
     | 
    
         
            +
             
     | 
| 
      
 448 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 449 
     | 
    
         
            +
             
     | 
| 
      
 450 
     | 
    
         
            +
            * Correctly run `before(:suite)` (and friends) in the context of an example
         
     | 
| 
      
 451 
     | 
    
         
            +
              group instance, thus making the expected RSpec environment available.
         
     | 
| 
      
 452 
     | 
    
         
            +
              (Jon Rowe, #1986)
         
     | 
| 
      
 453 
     | 
    
         
            +
             
     | 
| 
      
 454 
     | 
    
         
            +
            ### 3.3.0 / 2015-06-12
         
     | 
| 
      
 455 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.3...v3.3.0)
         
     | 
| 
      
 456 
     | 
    
         
            +
             
     | 
| 
      
 457 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 458 
     | 
    
         
            +
             
     | 
| 
      
 459 
     | 
    
         
            +
            * Expose the reporter used to run examples via `RSpec::Core::Example#reporter`.
         
     | 
| 
      
 460 
     | 
    
         
            +
              (Jon Rowe, #1866)
         
     | 
| 
      
 461 
     | 
    
         
            +
            * Make `RSpec::Core::Reporter#message` a public supported API. (Jon Rowe, #1866)
         
     | 
| 
      
 462 
     | 
    
         
            +
            * Allow custom formatter events to be published via
         
     | 
| 
      
 463 
     | 
    
         
            +
              `RSpec::Core::Reporter#publish(event_name, hash_of_attributes)`. (Jon Rowe, #1869)
         
     | 
| 
      
 464 
     | 
    
         
            +
            * Remove dependency on the standard library `Set` and replace with `RSpec::Core::Set`.
         
     | 
| 
      
 465 
     | 
    
         
            +
              (Jon Rowe, #1870)
         
     | 
| 
      
 466 
     | 
    
         
            +
            * Assign a unique id to each example and group so that they can be
         
     | 
| 
      
 467 
     | 
    
         
            +
              uniquely identified, even for shared examples (and similar situations)
         
     | 
| 
      
 468 
     | 
    
         
            +
              where the location isn't unique. (Myron Marston, #1884)
         
     | 
| 
      
 469 
     | 
    
         
            +
            * Use the example id in the rerun command printed for failed examples
         
     | 
| 
      
 470 
     | 
    
         
            +
              when the location is not unique. (Myron Marston, #1884)
         
     | 
| 
      
 471 
     | 
    
         
            +
            * Add `config.example_status_persistence_file_path` option, which is
         
     | 
| 
      
 472 
     | 
    
         
            +
              used to persist the last run status of each example. (Myron Marston, #1888)
         
     | 
| 
      
 473 
     | 
    
         
            +
            * Add `:last_run_status` metadata to each example, which indicates what
         
     | 
| 
      
 474 
     | 
    
         
            +
              happened the last time an example ran. (Myron Marston, #1888)
         
     | 
| 
      
 475 
     | 
    
         
            +
            * Add `--only-failures` CLI option which filters to only the examples
         
     | 
| 
      
 476 
     | 
    
         
            +
              that failed the last time they ran. (Myron Marston, #1888)
         
     | 
| 
      
 477 
     | 
    
         
            +
            * Add `--next-failure` CLI option which allows you to repeatedly focus
         
     | 
| 
      
 478 
     | 
    
         
            +
              on just one of the currently failing examples, then move on to the
         
     | 
| 
      
 479 
     | 
    
         
            +
              next failure, etc. (Myron Marston, #1888)
         
     | 
| 
      
 480 
     | 
    
         
            +
            * Make `--order random` ordering stable, so that when you rerun a
         
     | 
| 
      
 481 
     | 
    
         
            +
              subset with a given seed, the examples will be order consistently
         
     | 
| 
      
 482 
     | 
    
         
            +
              relative to each other. (Myron Marston, #1908)
         
     | 
| 
      
 483 
     | 
    
         
            +
            * Set example group constant earlier so errors when evaluating the context
         
     | 
| 
      
 484 
     | 
    
         
            +
              include the example group name (Myron Marson, #1911)
         
     | 
| 
      
 485 
     | 
    
         
            +
            * Make `let` and `subject` threadsafe. (Josh Cheek, #1858)
         
     | 
| 
      
 486 
     | 
    
         
            +
            * Add version information into the JSON formatter. (Mark Swinson, #1883)
         
     | 
| 
      
 487 
     | 
    
         
            +
            * Add `--bisect` CLI option, which will repeatedly run your suite in
         
     | 
| 
      
 488 
     | 
    
         
            +
              order to isolate the failures to the smallest reproducible case.
         
     | 
| 
      
 489 
     | 
    
         
            +
              (Myron Marston, #1917)
         
     | 
| 
      
 490 
     | 
    
         
            +
            * For `config.include`, `config.extend` and `config.prepend`, apply the
         
     | 
| 
      
 491 
     | 
    
         
            +
              module to previously defined matching example groups. (Eugene Kenny, #1935)
         
     | 
| 
      
 492 
     | 
    
         
            +
            * When invalid options are parsed, notify users where they came from
         
     | 
| 
      
 493 
     | 
    
         
            +
              (e.g. `.rspec` or `~/.rspec` or `ENV['SPEC_OPTS']`) so they can
         
     | 
| 
      
 494 
     | 
    
         
            +
              easily find the source of the problem. (Myron Marston, #1940)
         
     | 
| 
      
 495 
     | 
    
         
            +
            * Add pending message contents to the json formatter output. (Jon Rowe, #1949)
         
     | 
| 
      
 496 
     | 
    
         
            +
            * Add shared group backtrace to the output displayed by the built-in
         
     | 
| 
      
 497 
     | 
    
         
            +
              formatters for pending examples that have been fixed. (Myron Marston, #1946)
         
     | 
| 
      
 498 
     | 
    
         
            +
            * Add support for `:aggregate_failures` metadata. Tag an example or
         
     | 
| 
      
 499 
     | 
    
         
            +
              group with this metadata and it'll use rspec-expectations'
         
     | 
| 
      
 500 
     | 
    
         
            +
              `aggregate_failures` feature to allow multiple failures in an example
         
     | 
| 
      
 501 
     | 
    
         
            +
              and list them all, rather than aborting on the first failure. (Myron
         
     | 
| 
      
 502 
     | 
    
         
            +
              Marston, #1946)
         
     | 
| 
      
 503 
     | 
    
         
            +
            * When no formatter implements #message add a fallback to prevent those
         
     | 
| 
      
 504 
     | 
    
         
            +
              messages being lost. (Jon Rowe, #1980)
         
     | 
| 
      
 505 
     | 
    
         
            +
            * Profiling examples now takes into account time spent in `before(:context)`
         
     | 
| 
      
 506 
     | 
    
         
            +
              hooks. (Denis Laliberté, Jon Rowe, #1971)
         
     | 
| 
      
 507 
     | 
    
         
            +
            * Improve failure output when an example has multiple exceptions, such
         
     | 
| 
      
 508 
     | 
    
         
            +
              as one from an `it` block and one from an `after` block. (Myron Marston, #1985)
         
     | 
| 
      
 509 
     | 
    
         
            +
             
     | 
| 
      
 510 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 511 
     | 
    
         
            +
             
     | 
| 
      
 512 
     | 
    
         
            +
            * Handle invalid UTF-8 strings within exception methods. (Benjamin Fleischer, #1760)
         
     | 
| 
      
 513 
     | 
    
         
            +
            * Fix Rake Task quoting of file names with quotes to work properly on
         
     | 
| 
      
 514 
     | 
    
         
            +
              Windows. (Myron Marston, #1887)
         
     | 
| 
      
 515 
     | 
    
         
            +
            * Fix `RSpec::Core::RakeTask#failure_message` so that it gets printed
         
     | 
| 
      
 516 
     | 
    
         
            +
              when the task failed. (Myron Marston, #1905)
         
     | 
| 
      
 517 
     | 
    
         
            +
            * Make `let` work properly when defined in a shared context that is applied
         
     | 
| 
      
 518 
     | 
    
         
            +
              to an individual example via metadata. (Myron Marston, #1912)
         
     | 
| 
      
 519 
     | 
    
         
            +
            * Ensure `rspec/autorun` respects configuration defaults. (Jon Rowe, #1933)
         
     | 
| 
      
 520 
     | 
    
         
            +
            * Prevent modules overriding example group defined methods when included,
         
     | 
| 
      
 521 
     | 
    
         
            +
              prepended or extended by config defined after an example group. (Eugene Kenny, #1935)
         
     | 
| 
      
 522 
     | 
    
         
            +
            * Fix regression which caused shared examples to be mistakenly run when specs
         
     | 
| 
      
 523 
     | 
    
         
            +
              where filtered to a particular location.  (Ben Axnick, #1963)
         
     | 
| 
      
 524 
     | 
    
         
            +
            * Fix time formatting logic so that it displays 70 seconds as "1 minute,
         
     | 
| 
      
 525 
     | 
    
         
            +
              10 seconds" rather than "1 minute, 1 second". (Paul Brennan, #1984)
         
     | 
| 
      
 526 
     | 
    
         
            +
            * Fix regression where the formatter loader would allow duplicate formatters.
         
     | 
| 
      
 527 
     | 
    
         
            +
              (Jon Rowe, #1990)
         
     | 
| 
      
 528 
     | 
    
         
            +
             
     | 
| 
      
 529 
     | 
    
         
            +
            ### 3.2.3 / 2015-04-06
         
     | 
| 
      
 530 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.2...v3.2.3)
         
     | 
| 
      
 531 
     | 
    
         
            +
             
     | 
| 
      
 532 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 533 
     | 
    
         
            +
             
     | 
| 
      
 534 
     | 
    
         
            +
            * Fix how the DSL methods are defined so that RSpec is compatible with
         
     | 
| 
      
 535 
     | 
    
         
            +
              gems that define methods of the same name on `Kernel` (such as
         
     | 
| 
      
 536 
     | 
    
         
            +
              the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, #1907)
         
     | 
| 
      
 537 
     | 
    
         
            +
            * Fix `before(:context) { skip }` so that it does not wrongly cause the
         
     | 
| 
      
 538 
     | 
    
         
            +
              spec suite to exit with a non-zero status when no examples failed.
         
     | 
| 
      
 539 
     | 
    
         
            +
              (Myron Marston, #1926)
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
            ### 3.2.2 / 2015-03-11
         
     | 
| 
      
 542 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.1...v3.2.2)
         
     | 
| 
      
 543 
     | 
    
         
            +
             
     | 
| 
      
 544 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 545 
     | 
    
         
            +
             
     | 
| 
      
 546 
     | 
    
         
            +
            * Fix regression in 3.2.0 that allowed tag-filtered examples to
         
     | 
| 
      
 547 
     | 
    
         
            +
              run even if there was a location filter applied to the spec
         
     | 
| 
      
 548 
     | 
    
         
            +
              file that was intended to limit the file to other examples.
         
     | 
| 
      
 549 
     | 
    
         
            +
              (#1894, Myron Marston)
         
     | 
| 
      
 550 
     | 
    
         
            +
             
     | 
| 
      
 551 
     | 
    
         
            +
            ### 3.2.1 / 2015-02-23
         
     | 
| 
      
 552 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.0...v3.2.1)
         
     | 
| 
      
 553 
     | 
    
         
            +
             
     | 
| 
      
 554 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 555 
     | 
    
         
            +
             
     | 
| 
      
 556 
     | 
    
         
            +
            * Notify start-of-run seed _before_ `start` notification rather than
         
     | 
| 
      
 557 
     | 
    
         
            +
              _after_ so that formatters like Fuubar work properly. (Samuel Esposito, #1882)
         
     | 
| 
      
 558 
     | 
    
         
            +
             
     | 
| 
      
 559 
     | 
    
         
            +
            ### 3.2.0 / 2015-02-03
         
     | 
| 
      
 560 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)
         
     | 
| 
      
 561 
     | 
    
         
            +
             
     | 
| 
      
 562 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 563 
     | 
    
         
            +
             
     | 
| 
      
 564 
     | 
    
         
            +
            * Improve the `inspect` output of example groups. (Mike Dalton, #1687)
         
     | 
| 
      
 565 
     | 
    
         
            +
            * When rake task fails, only output the command if `verbose` flag is
         
     | 
| 
      
 566 
     | 
    
         
            +
              set. (Ben Snape, #1704)
         
     | 
| 
      
 567 
     | 
    
         
            +
            * Add `RSpec.clear_examples` as a clear way to reset examples in between
         
     | 
| 
      
 568 
     | 
    
         
            +
              spec runs, whilst retaining user configuration.  (Alexey Fedorov, #1706)
         
     | 
| 
      
 569 
     | 
    
         
            +
            * Reduce string allocations when defining and running examples by 70%
         
     | 
| 
      
 570 
     | 
    
         
            +
              and 50% respectively. (Myron Marston, #1738)
         
     | 
| 
      
 571 
     | 
    
         
            +
            * Removed dependency on pathname from stdlib. (Sam Phippen, #1703)
         
     | 
| 
      
 572 
     | 
    
         
            +
            * Improve the message presented when a user hits Ctrl-C.
         
     | 
| 
      
 573 
     | 
    
         
            +
              (Alex Chaffee #1717, #1742)
         
     | 
| 
      
 574 
     | 
    
         
            +
            * Improve shared example group inclusion backtrace displayed
         
     | 
| 
      
 575 
     | 
    
         
            +
              in failed example output so that it works for all methods
         
     | 
| 
      
 576 
     | 
    
         
            +
              of including shared example groups and shows all inclusion
         
     | 
| 
      
 577 
     | 
    
         
            +
              locations. (Myron Marston, #1763)
         
     | 
| 
      
 578 
     | 
    
         
            +
            * Issue seed notification at start (as well as the end) of the reporter
         
     | 
| 
      
 579 
     | 
    
         
            +
              run. (Arlandis Word, #1761)
         
     | 
| 
      
 580 
     | 
    
         
            +
            * Improve the documentation of around hooks. (Jim Kingdon, #1772)
         
     | 
| 
      
 581 
     | 
    
         
            +
            * Support prepending of modules into example groups from config and allow
         
     | 
| 
      
 582 
     | 
    
         
            +
              filtering based on metadata. (Arlandis Word, #1806)
         
     | 
| 
      
 583 
     | 
    
         
            +
            * Emit warnings when `:suite` hooks are registered on an example group
         
     | 
| 
      
 584 
     | 
    
         
            +
              (where it has always been ignored) or are registered with metadata
         
     | 
| 
      
 585 
     | 
    
         
            +
              (which has always been ignored). (Myron Marston, #1805)
         
     | 
| 
      
 586 
     | 
    
         
            +
            * Provide a friendly error message when users call RSpec example group
         
     | 
| 
      
 587 
     | 
    
         
            +
              APIs (e.g. `context`, `describe`, `it`, `let`, `before`, etc) from
         
     | 
| 
      
 588 
     | 
    
         
            +
              within an example where those APIs are unavailable. (Myron Marston, #1819)
         
     | 
| 
      
 589 
     | 
    
         
            +
            * Provide a friendly error message when users call RSpec example
         
     | 
| 
      
 590 
     | 
    
         
            +
              APIs (e.g. `expect`, `double`, `stub_const`, etc) from
         
     | 
| 
      
 591 
     | 
    
         
            +
              within an example group where those APIs are unavailable.
         
     | 
| 
      
 592 
     | 
    
         
            +
              (Myron Marston, #1819)
         
     | 
| 
      
 593 
     | 
    
         
            +
            * Add new `RSpec::Core::Sandbox.sandboxed { }` API that facilitates
         
     | 
| 
      
 594 
     | 
    
         
            +
              testing RSpec with RSpec, allowing you to define example groups
         
     | 
| 
      
 595 
     | 
    
         
            +
              and example from within an example without affecting the global
         
     | 
| 
      
 596 
     | 
    
         
            +
              `RSpec.world` state. (Tyler Ball, 1808)
         
     | 
| 
      
 597 
     | 
    
         
            +
            * Apply line-number filters only to the files they are scoped to,
         
     | 
| 
      
 598 
     | 
    
         
            +
              allowing you to mix filtered and unfiltered files. (Myron Marston, #1839)
         
     | 
| 
      
 599 
     | 
    
         
            +
            * When dumping pending examples, include the failure details so that you
         
     | 
| 
      
 600 
     | 
    
         
            +
              don't have to un-pend the example to see it. (Myron Marston, #1844)
         
     | 
| 
      
 601 
     | 
    
         
            +
            * Make `-I` option support multiple values when separated by
         
     | 
| 
      
 602 
     | 
    
         
            +
              `File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
         
     | 
| 
      
 603 
     | 
    
         
            +
              the behavior of Ruby's `-I` option. (Fumiaki Matsushima, #1855).
         
     | 
| 
      
 604 
     | 
    
         
            +
            * Treat each example as having a singleton example group for the
         
     | 
| 
      
 605 
     | 
    
         
            +
              purposes of applying metadata-based features that normally apply
         
     | 
| 
      
 606 
     | 
    
         
            +
              to example groups to individually tagged examples. For example,
         
     | 
| 
      
 607 
     | 
    
         
            +
              `RSpec.shared_context "Uses redis", :uses_redis` will now apply
         
     | 
| 
      
 608 
     | 
    
         
            +
              to individual examples tagged with `:uses_redis`, as will
         
     | 
| 
      
 609 
     | 
    
         
            +
              `config.include RedisHelpers, :uses_redis`, and
         
     | 
| 
      
 610 
     | 
    
         
            +
              `config.before(:context, :uses_redis) { }`, etc. (Myron Marston, #1749)
         
     | 
| 
      
 611 
     | 
    
         
            +
             
     | 
| 
      
 612 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 613 
     | 
    
         
            +
             
     | 
| 
      
 614 
     | 
    
         
            +
            * When assigning generated example descriptions, surface errors
         
     | 
| 
      
 615 
     | 
    
         
            +
              raised by `matcher.description` in the example description.
         
     | 
| 
      
 616 
     | 
    
         
            +
              (Myron Marston, #1771)
         
     | 
| 
      
 617 
     | 
    
         
            +
            * Don't consider expectations from `after` hooks when generating
         
     | 
| 
      
 618 
     | 
    
         
            +
              example descriptions. (Myron Marston, #1771)
         
     | 
| 
      
 619 
     | 
    
         
            +
            * Don't apply metadata-filtered config hooks to examples in groups
         
     | 
| 
      
 620 
     | 
    
         
            +
              with matching metadata when those examples override the parent
         
     | 
| 
      
 621 
     | 
    
         
            +
              metadata value to not match. (Myron Marston, #1796)
         
     | 
| 
      
 622 
     | 
    
         
            +
            * Fix `config.expect_with :minitest` so that `skip` uses RSpec's
         
     | 
| 
      
 623 
     | 
    
         
            +
              implementation rather than Minitest's. (Jonathan Rochkind, #1822)
         
     | 
| 
      
 624 
     | 
    
         
            +
            * Fix `NameError` caused when duplicate example group aliases are defined and
         
     | 
| 
      
 625 
     | 
    
         
            +
              the DSL is not globally exposed. (Aaron Kromer, #1825)
         
     | 
| 
      
 626 
     | 
    
         
            +
            * When a shared example defined in an external file fails, use the host
         
     | 
| 
      
 627 
     | 
    
         
            +
              example group (from a loaded spec file) for the re-run command to
         
     | 
| 
      
 628 
     | 
    
         
            +
              ensure the command will actually work. (Myron Marston, #1835)
         
     | 
| 
      
 629 
     | 
    
         
            +
            * Fix location filtering to work properly for examples defined in
         
     | 
| 
      
 630 
     | 
    
         
            +
              a nested example group within a shared example group defined in
         
     | 
| 
      
 631 
     | 
    
         
            +
              an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, #1837)
         
     | 
| 
      
 632 
     | 
    
         
            +
            * When a pending example fails (as expected) due to a mock expectation,
         
     | 
| 
      
 633 
     | 
    
         
            +
              set `RSpec::Core::Example::ExecutionResult#pending_exception` --
         
     | 
| 
      
 634 
     | 
    
         
            +
              previously it was not being set but should have been. (Myron Marston, #1844)
         
     | 
| 
      
 635 
     | 
    
         
            +
            * Fix rake task to work when `rspec-core` is installed in a directory
         
     | 
| 
      
 636 
     | 
    
         
            +
              containing a space. (Guido Günther, #1845)
         
     | 
| 
      
 637 
     | 
    
         
            +
            * Fix regression in 3.1 that caused `describe Regexp` to raise errors.
         
     | 
| 
      
 638 
     | 
    
         
            +
              (Durran Jordan, #1853)
         
     | 
| 
      
 639 
     | 
    
         
            +
            * Fix regression in 3.x that caused the profile information to be printed
         
     | 
| 
      
 640 
     | 
    
         
            +
              after the summary. (Max Lincoln, #1857)
         
     | 
| 
      
 641 
     | 
    
         
            +
            * Apply `--seed` before loading `--require` files so that required files
         
     | 
| 
      
 642 
     | 
    
         
            +
              can access the provided seed. (Myron Marston, #1745)
         
     | 
| 
      
 643 
     | 
    
         
            +
            * Handle `RSpec::Core::Formatters::DeprecationFormatter::FileStream` being
         
     | 
| 
      
 644 
     | 
    
         
            +
              reopened with an IO stream, which sometimes happens with spring.
         
     | 
| 
      
 645 
     | 
    
         
            +
              (Kevin Mook, #1757)
         
     | 
| 
      
 646 
     | 
    
         
            +
             
     | 
| 
      
 647 
     | 
    
         
            +
            ### 3.1.7 / 2014-10-11
         
     | 
| 
      
 648 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.6...v3.1.7)
         
     | 
| 
      
 649 
     | 
    
         
            +
             
     | 
| 
      
 650 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 651 
     | 
    
         
            +
             
     | 
| 
      
 652 
     | 
    
         
            +
            * Fix `Metadata.relative_path` so that for a current directory of
         
     | 
| 
      
 653 
     | 
    
         
            +
              `/foo/bar`, `/foo/bar_1` is not wrongly converted to `._1`.
         
     | 
| 
      
 654 
     | 
    
         
            +
              (Akos Vandra, #1730)
         
     | 
| 
      
 655 
     | 
    
         
            +
            * Prevent constant lookup mistakenly finding `RSpec::ExampleGroups` generated
         
     | 
| 
      
 656 
     | 
    
         
            +
              constants on 1.9.2 by appending a trailing `_` to the generated names.
         
     | 
| 
      
 657 
     | 
    
         
            +
              (Jon Rowe, #1737)
         
     | 
| 
      
 658 
     | 
    
         
            +
            * Fix bug in `:pending` metadata. If it got set in any way besides passing
         
     | 
| 
      
 659 
     | 
    
         
            +
              it as part of the metadata literal passed to `it` (such as by using
         
     | 
| 
      
 660 
     | 
    
         
            +
              `define_derived_metadata`), it did not have the desired effect,
         
     | 
| 
      
 661 
     | 
    
         
            +
              instead marking the example as `:passed`. (Myron Marston, #1739)
         
     | 
| 
      
 662 
     | 
    
         
            +
             
     | 
| 
      
 663 
     | 
    
         
            +
            ### 3.1.6 / 2014-10-08
         
     | 
| 
      
 664 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.5...v3.1.6)
         
     | 
| 
      
 665 
     | 
    
         
            +
             
     | 
| 
      
 666 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 667 
     | 
    
         
            +
             
     | 
| 
      
 668 
     | 
    
         
            +
            * Fix regression in rake task pattern handling, that prevented patterns
         
     | 
| 
      
 669 
     | 
    
         
            +
              that were relative from the current directory rather than from `spec`
         
     | 
| 
      
 670 
     | 
    
         
            +
              from working properly. (Myron Marston, #1734)
         
     | 
| 
      
 671 
     | 
    
         
            +
            * Prevent rake task from generating duplicate load path entries.
         
     | 
| 
      
 672 
     | 
    
         
            +
              (Myron Marston, #1735)
         
     | 
| 
      
 673 
     | 
    
         
            +
             
     | 
| 
      
 674 
     | 
    
         
            +
            ### 3.1.5 / 2014-09-29
         
     | 
| 
      
 675 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.4...v3.1.5)
         
     | 
| 
      
 676 
     | 
    
         
            +
             
     | 
| 
      
 677 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 678 
     | 
    
         
            +
             
     | 
| 
      
 679 
     | 
    
         
            +
            * Fix issue with the rake task incorrectly escaping strings on Windows.
         
     | 
| 
      
 680 
     | 
    
         
            +
              (Jon Rowe #1718)
         
     | 
| 
      
 681 
     | 
    
         
            +
            * Support absolute path patterns. While this wasn't officially supported
         
     | 
| 
      
 682 
     | 
    
         
            +
              previously, setting `rake_task.pattern` to an absolute path pattern in
         
     | 
| 
      
 683 
     | 
    
         
            +
              RSpec 3.0 and before worked since it delegated to `FileList` internally
         
     | 
| 
      
 684 
     | 
    
         
            +
              (but now just forwards the pattern on to the `rspec` command).
         
     | 
| 
      
 685 
     | 
    
         
            +
              (Myron Marston, #1726)
         
     | 
| 
      
 686 
     | 
    
         
            +
             
     | 
| 
      
 687 
     | 
    
         
            +
            ### 3.1.4 / 2014-09-18
         
     | 
| 
      
 688 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.3...v3.1.4)
         
     | 
| 
      
 689 
     | 
    
         
            +
             
     | 
| 
      
 690 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 691 
     | 
    
         
            +
             
     | 
| 
      
 692 
     | 
    
         
            +
            * Fix implicit `subject` when using `describe false` or `describe nil`
         
     | 
| 
      
 693 
     | 
    
         
            +
              so that it returns the provided primitive rather than the string
         
     | 
| 
      
 694 
     | 
    
         
            +
              representation. (Myron Marston, #1710)
         
     | 
| 
      
 695 
     | 
    
         
            +
            * Fix backtrace filtering to allow code in subdirectories of your
         
     | 
| 
      
 696 
     | 
    
         
            +
              current working directory (such as vendor/bundle/...) to be filtered
         
     | 
| 
      
 697 
     | 
    
         
            +
              from backtraces. (Myron Marston, #1708)
         
     | 
| 
      
 698 
     | 
    
         
            +
             
     | 
| 
      
 699 
     | 
    
         
            +
            ### 3.1.3 / 2014-09-15
         
     | 
| 
      
 700 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.2...v3.1.3)
         
     | 
| 
      
 701 
     | 
    
         
            +
             
     | 
| 
      
 702 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 703 
     | 
    
         
            +
             
     | 
| 
      
 704 
     | 
    
         
            +
            * Fix yet another regression in rake task pattern handling, to allow
         
     | 
| 
      
 705 
     | 
    
         
            +
              `task.pattern = FileList["..."]` to work. That was never intended
         
     | 
| 
      
 706 
     | 
    
         
            +
              to be supported but accidentally worked in 3.0 and earlier.
         
     | 
| 
      
 707 
     | 
    
         
            +
              (Myron Marston, #1701)
         
     | 
| 
      
 708 
     | 
    
         
            +
            * Fix pattern handling so that files are normalized to absolute paths
         
     | 
| 
      
 709 
     | 
    
         
            +
              before subtracting the `--exclude-pattern` matched files from the
         
     | 
| 
      
 710 
     | 
    
         
            +
              `--pattern` matched files so that it still works even if the patterns
         
     | 
| 
      
 711 
     | 
    
         
            +
              are in slightly different forms (e.g. one starting with `./`).
         
     | 
| 
      
 712 
     | 
    
         
            +
              (Christian Nelson, #1698)
         
     | 
| 
      
 713 
     | 
    
         
            +
             
     | 
| 
      
 714 
     | 
    
         
            +
            ### 3.1.2 / 2014-09-08
         
     | 
| 
      
 715 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.1...v3.1.2)
         
     | 
| 
      
 716 
     | 
    
         
            +
             
     | 
| 
      
 717 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 718 
     | 
    
         
            +
             
     | 
| 
      
 719 
     | 
    
         
            +
            * Fix another regression in rake task pattern handling, so that patterns
         
     | 
| 
      
 720 
     | 
    
         
            +
              that start with `./` still work. (Christian Nelson, #1696)
         
     | 
| 
      
 721 
     | 
    
         
            +
             
     | 
| 
      
 722 
     | 
    
         
            +
            ### 3.1.1 / 2014-09-05
         
     | 
| 
      
 723 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.0...v3.1.1)
         
     | 
| 
      
 724 
     | 
    
         
            +
             
     | 
| 
      
 725 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 726 
     | 
    
         
            +
             
     | 
| 
      
 727 
     | 
    
         
            +
            * Fix a regression in rake task pattern handling, so that `rake_task.pattern = array`
         
     | 
| 
      
 728 
     | 
    
         
            +
              works again. While we never intended to support array values (or even knew that worked!),
         
     | 
| 
      
 729 
     | 
    
         
            +
              the implementation from 3.0 and earlier used `FileList` internally, which allows arrays.
         
     | 
| 
      
 730 
     | 
    
         
            +
              The fix restores the old behavior. (Myron Marston, #1694)
         
     | 
| 
      
 731 
     | 
    
         
            +
             
     | 
| 
      
 732 
     | 
    
         
            +
            ### 3.1.0 / 2014-09-04
         
     | 
| 
      
 733 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.4...v3.1.0)
         
     | 
| 
      
 734 
     | 
    
         
            +
             
     | 
| 
      
 735 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 736 
     | 
    
         
            +
             
     | 
| 
      
 737 
     | 
    
         
            +
            * Update files generated by `rspec --init` so that warnings are enabled
         
     | 
| 
      
 738 
     | 
    
         
            +
              in commented out section of `spec_helper` rather than `.rspec` so users
         
     | 
| 
      
 739 
     | 
    
         
            +
              have to consciously opt-in to the setting. (Andrew Hooker, #1572)
         
     | 
| 
      
 740 
     | 
    
         
            +
            * Update `spec_helper` generated by `rspec --init` so that it sets the new
         
     | 
| 
      
 741 
     | 
    
         
            +
              rspec-expectations `include_chain_clauses_in_custom_matcher_descriptions`
         
     | 
| 
      
 742 
     | 
    
         
            +
              config option (which will be on by default in RSpec 4) and also sets the
         
     | 
| 
      
 743 
     | 
    
         
            +
              rspec-mocks `verify_partial_doubles` option (which will also default
         
     | 
| 
      
 744 
     | 
    
         
            +
              to on in RSpec 4). (Myron Marston, #1647)
         
     | 
| 
      
 745 
     | 
    
         
            +
            * Provide an `inspect` output for example procsy objects (used in around
         
     | 
| 
      
 746 
     | 
    
         
            +
              hooks) that doesn't make them look like procs. (Jon Rowe, #1620)
         
     | 
| 
      
 747 
     | 
    
         
            +
            * Remove a few unneeded `require` statements from
         
     | 
| 
      
 748 
     | 
    
         
            +
              `rspec/core/rake_task.rb`, making it even more lighterweight.
         
     | 
| 
      
 749 
     | 
    
         
            +
              (Myron Marston, #1640)
         
     | 
| 
      
 750 
     | 
    
         
            +
            * Allow rspec-core to be used when neither rspec-mocks or
         
     | 
| 
      
 751 
     | 
    
         
            +
              rspec-expectations are installed, without requiring any
         
     | 
| 
      
 752 
     | 
    
         
            +
              user configuration. (Sam Phippen, Myron Marston, #1615)
         
     | 
| 
      
 753 
     | 
    
         
            +
            * Don't filter out gems from backtraces by default. (The RSpec
         
     | 
| 
      
 754 
     | 
    
         
            +
              gems will still be filtered). User feedback has indicated
         
     | 
| 
      
 755 
     | 
    
         
            +
              that including gems in default backtraces will be useful.
         
     | 
| 
      
 756 
     | 
    
         
            +
              (Myron Marston, #1641)
         
     | 
| 
      
 757 
     | 
    
         
            +
            * Add new `config.filter_gems_from_backtrace "rack", "rake"` API
         
     | 
| 
      
 758 
     | 
    
         
            +
              to easily filter the named gems from backtraces. (Myron Marston, #1682)
         
     | 
| 
      
 759 
     | 
    
         
            +
            * Fix default backtrace filters so that the RSpec binary is
         
     | 
| 
      
 760 
     | 
    
         
            +
              excluded when installing RSpec as a bundler `:git` dependency.
         
     | 
| 
      
 761 
     | 
    
         
            +
              (Myron Marston, #1648)
         
     | 
| 
      
 762 
     | 
    
         
            +
            * Simplify command generated by the rake task so that it no longer
         
     | 
| 
      
 763 
     | 
    
         
            +
              includes unnecessary `-S`. (Myron Marston, #1559)
         
     | 
| 
      
 764 
     | 
    
         
            +
            * Add `--exclude-pattern` CLI option, `config.exclude_pattern =` config
         
     | 
| 
      
 765 
     | 
    
         
            +
              option and `task.exclude_pattern =` rake task config option. Matching
         
     | 
| 
      
 766 
     | 
    
         
            +
              files will be excluded. (John Gesimondo, Myron Marston, #1651, #1671)
         
     | 
| 
      
 767 
     | 
    
         
            +
            * When an around hook fails to execute the example, mark it as
         
     | 
| 
      
 768 
     | 
    
         
            +
              pending (rather than passing) so the user is made aware of the
         
     | 
| 
      
 769 
     | 
    
         
            +
              fact that the example did not actually run. (Myron Marston, #1660)
         
     | 
| 
      
 770 
     | 
    
         
            +
            * Remove dependency on `FileUtils` from the standard library so that users do
         
     | 
| 
      
 771 
     | 
    
         
            +
              not get false positives where their code relies on it but they are not
         
     | 
| 
      
 772 
     | 
    
         
            +
              requiring it. (Sam Phippen, #1565)
         
     | 
| 
      
 773 
     | 
    
         
            +
             
     | 
| 
      
 774 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 775 
     | 
    
         
            +
             
     | 
| 
      
 776 
     | 
    
         
            +
            * Fix rake task `t.pattern =` option so that it does not run all specs
         
     | 
| 
      
 777 
     | 
    
         
            +
              when it matches no files, by passing along a `--pattern` option to
         
     | 
| 
      
 778 
     | 
    
         
            +
              the `rspec` command, rather than resolving the file list and passing
         
     | 
| 
      
 779 
     | 
    
         
            +
              along the files individually. (Evgeny Zislis, #1653)
         
     | 
| 
      
 780 
     | 
    
         
            +
            * Fix rake task default pattern so that it follows symlinks properly.
         
     | 
| 
      
 781 
     | 
    
         
            +
              (Myron Marston, #1672)
         
     | 
| 
      
 782 
     | 
    
         
            +
            * Fix default pattern used with `rspec` command so that it follows
         
     | 
| 
      
 783 
     | 
    
         
            +
              symlinks properly. (Myron Marston, #1672)
         
     | 
| 
      
 784 
     | 
    
         
            +
            * Change how we assign constant names to example group classes so that
         
     | 
| 
      
 785 
     | 
    
         
            +
              it avoids a problem with `describe "Core"`. (Daniela Wellisz, #1679)
         
     | 
| 
      
 786 
     | 
    
         
            +
            * Handle rendering exceptions that have a different encoding than that
         
     | 
| 
      
 787 
     | 
    
         
            +
              of their original source file. (Jon Rowe, #1681)
         
     | 
| 
      
 788 
     | 
    
         
            +
            * Allow access to message_lines without colour for failed examples even
         
     | 
| 
      
 789 
     | 
    
         
            +
              when they're part of a shared example group. (tomykaira, #1689)
         
     | 
| 
      
 790 
     | 
    
         
            +
             
     | 
| 
      
 791 
     | 
    
         
            +
            ### 3.0.4 / 2014-08-14
         
     | 
| 
      
 792 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.3...v3.0.4)
         
     | 
| 
      
 793 
     | 
    
         
            +
             
     | 
| 
      
 794 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 795 
     | 
    
         
            +
             
     | 
| 
      
 796 
     | 
    
         
            +
            * Fix processing order of CLI options so that if `config.files_to_run`
         
     | 
| 
      
 797 
     | 
    
         
            +
              is accessed from a file loaded by `--require`, `--pattern` is still
         
     | 
| 
      
 798 
     | 
    
         
            +
              applied. (Myron Marston, #1652)
         
     | 
| 
      
 799 
     | 
    
         
            +
            * Fix `config.pattern=` so that it still takes affect even if
         
     | 
| 
      
 800 
     | 
    
         
            +
              `config.files_to_run` has already been accessed. (Myron Marston, #1652)
         
     | 
| 
      
 801 
     | 
    
         
            +
             
     | 
| 
      
 802 
     | 
    
         
            +
            ### 3.0.3 / 2014-07-21
         
     | 
| 
      
 803 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.2...v3.0.3)
         
     | 
| 
      
 804 
     | 
    
         
            +
             
     | 
| 
      
 805 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 806 
     | 
    
         
            +
             
     | 
| 
      
 807 
     | 
    
         
            +
            * Properly convert both parts of a description into strings before
         
     | 
| 
      
 808 
     | 
    
         
            +
              concatenation.  (@nicklink483, #1636)
         
     | 
| 
      
 809 
     | 
    
         
            +
            * Exclude the working directory when figuring out folders to ignore.
         
     | 
| 
      
 810 
     | 
    
         
            +
              (Jon Rowe, Myron Marston, #1616)
         
     | 
| 
      
 811 
     | 
    
         
            +
            * Allow `::RSpec::Core::Notifications::FailedExampleNotification#message_lines`
         
     | 
| 
      
 812 
     | 
    
         
            +
              to be accessed without a colouriser. (@tomykaira, #1637)
         
     | 
| 
      
 813 
     | 
    
         
            +
             
     | 
| 
      
 814 
     | 
    
         
            +
            ### 3.0.2 / 2014-06-19
         
     | 
| 
      
 815 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.1...v3.0.2)
         
     | 
| 
      
 816 
     | 
    
         
            +
             
     | 
| 
      
 817 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 818 
     | 
    
         
            +
             
     | 
| 
      
 819 
     | 
    
         
            +
            * Fix regression in CLI option handling that prevented `--tag slow`
         
     | 
| 
      
 820 
     | 
    
         
            +
              passed at the command line from overriding `--tag ~slow` in `.rspec`.
         
     | 
| 
      
 821 
     | 
    
         
            +
              (Colin Jones, #1602)
         
     | 
| 
      
 822 
     | 
    
         
            +
            * Fix metadata `:example_group` deprecation warning so that it gets
         
     | 
| 
      
 823 
     | 
    
         
            +
              issued at the call site of the configuration that specified it as
         
     | 
| 
      
 824 
     | 
    
         
            +
              a filter rather than later when an example group is defined.
         
     | 
| 
      
 825 
     | 
    
         
            +
              (Myron Marston, #1562)
         
     | 
| 
      
 826 
     | 
    
         
            +
            * Make the line that is printed when a shared example group fails indicating
         
     | 
| 
      
 827 
     | 
    
         
            +
              where the concrete example group is white, separating it from the stack trace
         
     | 
| 
      
 828 
     | 
    
         
            +
              that is produced for the failure. (Sam Phippen, Jon Rowe, #1606)
         
     | 
| 
      
 829 
     | 
    
         
            +
             
     | 
| 
      
 830 
     | 
    
         
            +
            ### 3.0.1 / 2014-06-12
         
     | 
| 
      
 831 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
         
     | 
| 
      
 832 
     | 
    
         
            +
             
     | 
| 
      
 833 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 834 
     | 
    
         
            +
             
     | 
| 
      
 835 
     | 
    
         
            +
            * Fix a couple ruby warnings caused by rspec-core when loaded.
         
     | 
| 
      
 836 
     | 
    
         
            +
              (Prem Sichanugrist, #1584)
         
     | 
| 
      
 837 
     | 
    
         
            +
            * Example groups named `Config` will no longer cause a Ruby warning to be
         
     | 
| 
      
 838 
     | 
    
         
            +
              issued. (Jimmy Cuadra, #1580)
         
     | 
| 
      
 839 
     | 
    
         
            +
             
     | 
| 
      
 840 
     | 
    
         
            +
            ### 3.0.0 / 2014-06-01
         
     | 
| 
      
 841 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
         
     | 
| 
      
 842 
     | 
    
         
            +
             
     | 
| 
      
 843 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 844 
     | 
    
         
            +
             
     | 
| 
      
 845 
     | 
    
         
            +
            * Fix `BaseTextFormatter` so that it does not re-close a closed output
         
     | 
| 
      
 846 
     | 
    
         
            +
              stream. (Myron Marston)
         
     | 
| 
      
 847 
     | 
    
         
            +
            * Fix regression in metadata that caused the metadata hash of a top-level
         
     | 
| 
      
 848 
     | 
    
         
            +
              example group to have a `:parent_example_group` key even though it has
         
     | 
| 
      
 849 
     | 
    
         
            +
              no parent example group. (Myron Marston)
         
     | 
| 
      
 850 
     | 
    
         
            +
             
     | 
| 
      
 851 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 852 
     | 
    
         
            +
             
     | 
| 
      
 853 
     | 
    
         
            +
            * Alter the default `spec_helper.rb` to no longer recommend
         
     | 
| 
      
 854 
     | 
    
         
            +
              `config.full_backtrace = true` see #1536 for discussion. (Jon Rowe)
         
     | 
| 
      
 855 
     | 
    
         
            +
             
     | 
| 
      
 856 
     | 
    
         
            +
            ### 3.0.0.rc1 / 2014-05-18
         
     | 
| 
      
 857 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
         
     | 
| 
      
 858 
     | 
    
         
            +
             
     | 
| 
      
 859 
     | 
    
         
            +
            Breaking Changes for 3.0.0:
         
     | 
| 
      
 860 
     | 
    
         
            +
             
     | 
| 
      
 861 
     | 
    
         
            +
            * Change `described_class` so that in a nested group like `describe
         
     | 
| 
      
 862 
     | 
    
         
            +
              MyClass`, it returns `MyClass` rather than the outer group's described
         
     | 
| 
      
 863 
     | 
    
         
            +
              class. (Myron Marston)
         
     | 
| 
      
 864 
     | 
    
         
            +
            * Refactor filter manager so that it no longer subclasses Hash and has a
         
     | 
| 
      
 865 
     | 
    
         
            +
              tighter, more domain-specific interface. (Sergey Pchelincev)
         
     | 
| 
      
 866 
     | 
    
         
            +
            * Remove legacy colours definitions from `BaseTextFormatter`. (Jon Rowe)
         
     | 
| 
      
 867 
     | 
    
         
            +
            * Remove console color definitions from `BaseTextFormatter`. (Jon Rowe)
         
     | 
| 
      
 868 
     | 
    
         
            +
            * Restructure example group metadata so that the computed keys are
         
     | 
| 
      
 869 
     | 
    
         
            +
              exposed directly off of the metadata hash rather than being on
         
     | 
| 
      
 870 
     | 
    
         
            +
              a nested `:example_group` subhash. In addition, the parent example
         
     | 
| 
      
 871 
     | 
    
         
            +
              group metadata is now available as `[:parent_example_group]` rather
         
     | 
| 
      
 872 
     | 
    
         
            +
              than `[:example_group][:example_group]`. Deprecated access via the
         
     | 
| 
      
 873 
     | 
    
         
            +
              old key structure is still provided. (Myron Marston)
         
     | 
| 
      
 874 
     | 
    
         
            +
            * Remove `:describes` metadata key. It duplicates `:described_class`
         
     | 
| 
      
 875 
     | 
    
         
            +
              for no good reason. Deprecated access via `:describes` is still
         
     | 
| 
      
 876 
     | 
    
         
            +
              provided. (Myron Marston)
         
     | 
| 
      
 877 
     | 
    
         
            +
            * Rename `:example_group_block` metadata key to `:block`.
         
     | 
| 
      
 878 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 879 
     | 
    
         
            +
            * Remove deprecated `RSpec::Core::Example#options`. (Myron Marston)
         
     | 
| 
      
 880 
     | 
    
         
            +
            * Move `BaseTextFormatter#colorize_summary` to `SummaryNotification#colorize_with`
         
     | 
| 
      
 881 
     | 
    
         
            +
              (Jon Rowe).
         
     | 
| 
      
 882 
     | 
    
         
            +
            * `describe some_hash` treated `some_hash` as metadata in RSpec 2.x but
         
     | 
| 
      
 883 
     | 
    
         
            +
              will treat it as the described object in RSpec 3.0. Metadata must
         
     | 
| 
      
 884 
     | 
    
         
            +
              always come after the description args. (Myron Marston)
         
     | 
| 
      
 885 
     | 
    
         
            +
            * Remove deprecated `display_name` alias of `ExampleGroup.description`.
         
     | 
| 
      
 886 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 887 
     | 
    
         
            +
            * Remove deprecated `describes` alias of `ExampleGroup.described_class`.
         
     | 
| 
      
 888 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 889 
     | 
    
         
            +
            * Remove deprecated `RSpec::Core::ExampleGroup.alias_it_behaves_like_to`.
         
     | 
| 
      
 890 
     | 
    
         
            +
              Use `RSpec::Core::Configuration#alias_it_behaves_like_to` instead.
         
     | 
| 
      
 891 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 892 
     | 
    
         
            +
            * Remove deprecated `RSpec::Core::ExampleGroup.alias_example_to`.
         
     | 
| 
      
 893 
     | 
    
         
            +
              Use `RSpec::Core::Configuration#alias_example_to` instead.
         
     | 
| 
      
 894 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 895 
     | 
    
         
            +
            * Removed `focused` example alias and change example/group aliases
         
     | 
| 
      
 896 
     | 
    
         
            +
              `fit`, `focus`, `fcontext` and `fdescribe` to no longer include
         
     | 
| 
      
 897 
     | 
    
         
            +
              `:focused => true` metadata. They only contain `:focus => true`
         
     | 
| 
      
 898 
     | 
    
         
            +
              metadata now. This means that you will need to filter them with
         
     | 
| 
      
 899 
     | 
    
         
            +
              `filter_run :focus`, not `filter_run :focused`. (Myron Marston)
         
     | 
| 
      
 900 
     | 
    
         
            +
            * Remove `--line-number` filtering. It's semantically dubious since it's
         
     | 
| 
      
 901 
     | 
    
         
            +
              a global filter (potentially applied to multiple files) but there's no
         
     | 
| 
      
 902 
     | 
    
         
            +
              meaningful connection between the same line number in multiple files.
         
     | 
| 
      
 903 
     | 
    
         
            +
              Instead use the `rspec path/to/spec.rb:23:46` form, which is terser
         
     | 
| 
      
 904 
     | 
    
         
            +
              and makes more sense as it is scoped to a file. (Myron Marston)
         
     | 
| 
      
 905 
     | 
    
         
            +
            * Remove `--default_path` as an alias for `--default-path`. (Jon Rowe)
         
     | 
| 
      
 906 
     | 
    
         
            +
            * Remove deprecated `share_examples_for`. There's still
         
     | 
| 
      
 907 
     | 
    
         
            +
              `shared_examples` and `shared_examples_for`. (Myron Marston)
         
     | 
| 
      
 908 
     | 
    
         
            +
            * Rename `RSpec::Core::Configuration#warnings` to
         
     | 
| 
      
 909 
     | 
    
         
            +
              `RSpec::Core::Configuration#warnings?` since it's a boolean flag.
         
     | 
| 
      
 910 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 911 
     | 
    
         
            +
            * RSpec's global state is no longer reset after a spec run. This gives
         
     | 
| 
      
 912 
     | 
    
         
            +
              more flexibility to alternate runners to decide when and if they
         
     | 
| 
      
 913 
     | 
    
         
            +
              want the state reset. Alternate runners are now responsible for
         
     | 
| 
      
 914 
     | 
    
         
            +
              calling this (or doing a similar reset) if they are going to run
         
     | 
| 
      
 915 
     | 
    
         
            +
              the spec suite multiple times in the same process. (Sam Phippen)
         
     | 
| 
      
 916 
     | 
    
         
            +
            * Merge `RSpec::Core::CommandLine` (never formally declared public)
         
     | 
| 
      
 917 
     | 
    
         
            +
              into `RSpec::Core::Runner`. (Myron Marston)
         
     | 
| 
      
 918 
     | 
    
         
            +
            * Remove `color_enabled` as an alias of `color`. (Jon Rowe)
         
     | 
| 
      
 919 
     | 
    
         
            +
            * Remove `backtrace_cleaner` as an alias of `backtrace_formatter`. (Jon Rowe)
         
     | 
| 
      
 920 
     | 
    
         
            +
            * Remove `filename_pattern` as an alias of `pattern`. (Jon Rowe)
         
     | 
| 
      
 921 
     | 
    
         
            +
            * Extract support for legacy formatters to `rspec-legacy_formatters`. (Jon Rowe)
         
     | 
| 
      
 922 
     | 
    
         
            +
            * `RSpec::Configuration#formatters` now returns a dup to prevent mutation. (Jon Rowe)
         
     | 
| 
      
 923 
     | 
    
         
            +
            * Replace `stdlib` as an available expectation framework with `test_unit` and
         
     | 
| 
      
 924 
     | 
    
         
            +
              `minitest`. (Aaron Kromer)
         
     | 
| 
      
 925 
     | 
    
         
            +
            * Remove backtrace formatting helpers from `BaseTextFormatter`. (Jon Rowe)
         
     | 
| 
      
 926 
     | 
    
         
            +
            * Extract profiler support to `ProfileFormatter` and `ProfileNotification`.
         
     | 
| 
      
 927 
     | 
    
         
            +
              Formatters should implement `dump_profile` if they wish to respond to `--profile`.
         
     | 
| 
      
 928 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 929 
     | 
    
         
            +
            * Extract remaining formatter state to reporter and notifications. Introduce
         
     | 
| 
      
 930 
     | 
    
         
            +
              `ExamplesNotification` to share information about examples that was previously
         
     | 
| 
      
 931 
     | 
    
         
            +
              held in `BaseFormatter`. (Jon Rowe)
         
     | 
| 
      
 932 
     | 
    
         
            +
             
     | 
| 
      
 933 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 934 
     | 
    
         
            +
             
     | 
| 
      
 935 
     | 
    
         
            +
            * Add `config.default_formatter` attribute, which can be used to set a
         
     | 
| 
      
 936 
     | 
    
         
            +
              formatter which will only be used if no other formatter is set
         
     | 
| 
      
 937 
     | 
    
         
            +
              (e.g. via `--formatter`). (Myron Marston)
         
     | 
| 
      
 938 
     | 
    
         
            +
            * Support legacy colour definitions in `LegacyFormatterAdaptor`. (Jon Rowe)
         
     | 
| 
      
 939 
     | 
    
         
            +
            * Migrate `execution_result` (exposed by metadata) from a hash to a
         
     | 
| 
      
 940 
     | 
    
         
            +
              first-class object with appropriate attributes. `status` is now
         
     | 
| 
      
 941 
     | 
    
         
            +
              stored and returned as a symbol rather than a string. It retains
         
     | 
| 
      
 942 
     | 
    
         
            +
              deprecated hash behavior for backwards compatibility. (Myron Marston)
         
     | 
| 
      
 943 
     | 
    
         
            +
            * Provide console code helper for formatters. (Jon Rowe)
         
     | 
| 
      
 944 
     | 
    
         
            +
            * Use raw ruby hashes for the metadata hashes rather than a subclass of
         
     | 
| 
      
 945 
     | 
    
         
            +
              a hash. Computed metadata entries are now computed in advance rather
         
     | 
| 
      
 946 
     | 
    
         
            +
              than being done lazily on first access. (Myron Marston)
         
     | 
| 
      
 947 
     | 
    
         
            +
            * Add `:block` metadata entry to the example metadata, bringing
         
     | 
| 
      
 948 
     | 
    
         
            +
              parity with `:block` in the example group metadata. (Myron Marston)
         
     | 
| 
      
 949 
     | 
    
         
            +
            * Add `fspecify` and `fexample` as aliases of `specify` and `example`
         
     | 
| 
      
 950 
     | 
    
         
            +
              with `:focus => true` metadata for parity with `fit`. (Myron Marston)
         
     | 
| 
      
 951 
     | 
    
         
            +
            * Add legacy support for `colorize_summary`. (Jon Rowe)
         
     | 
| 
      
 952 
     | 
    
         
            +
            * Restructure runner so it can be more easily customized in a subclass
         
     | 
| 
      
 953 
     | 
    
         
            +
              for an alternate runner. (Ben Hoskings)
         
     | 
| 
      
 954 
     | 
    
         
            +
            * Document `RSpec::Core::ConfigurationOptions` as an officially
         
     | 
| 
      
 955 
     | 
    
         
            +
              supported public API. (Myron Marston)
         
     | 
| 
      
 956 
     | 
    
         
            +
            * Add `--deprecation-out` CLI option which directs deprecation warnings
         
     | 
| 
      
 957 
     | 
    
         
            +
              to the named file. (Myron Marston)
         
     | 
| 
      
 958 
     | 
    
         
            +
            * Minitest 5 compatability for `expect_with :stdlib` (now available as
         
     | 
| 
      
 959 
     | 
    
         
            +
              `expect_with :minitest`). (Xavier Shay)
         
     | 
| 
      
 960 
     | 
    
         
            +
            * Reporter now notifies formatters of the load time of RSpec and your
         
     | 
| 
      
 961 
     | 
    
         
            +
              specs via `StartNotification` and `SummaryNotification`. (Jon Rowe)
         
     | 
| 
      
 962 
     | 
    
         
            +
            * Add `disable_monkey_patching!` config option that disables all monkey
         
     | 
| 
      
 963 
     | 
    
         
            +
              patching from whatever pieces of RSpec you use. (Alexey Fedorov)
         
     | 
| 
      
 964 
     | 
    
         
            +
            * Add `Pathname` support for setting all output streams. (Aaron Kromer)
         
     | 
| 
      
 965 
     | 
    
         
            +
            * Add `config.define_derived_metadata`, which can be used to apply
         
     | 
| 
      
 966 
     | 
    
         
            +
              additional metadata to all groups or examples that match a given
         
     | 
| 
      
 967 
     | 
    
         
            +
              filter. (Myron Marston)
         
     | 
| 
      
 968 
     | 
    
         
            +
            * Provide formatted and colorized backtraces via `FailedExampleNotification`
         
     | 
| 
      
 969 
     | 
    
         
            +
              and send `PendingExampleFixedNotifications` when the error is due to a
         
     | 
| 
      
 970 
     | 
    
         
            +
              passing spec you expect to fail. (Jon Rowe)
         
     | 
| 
      
 971 
     | 
    
         
            +
            * Add `dump_profile` to formatter API to allow formatters to implement
         
     | 
| 
      
 972 
     | 
    
         
            +
              support for `--profile`. (Jon Rowe)
         
     | 
| 
      
 973 
     | 
    
         
            +
            * Allow colourising text via `ConsoleCodes` with RSpec 'states'
         
     | 
| 
      
 974 
     | 
    
         
            +
              (e.g. `:success`, `:failure`) rather than direct colour codes. (Jon Rowe)
         
     | 
| 
      
 975 
     | 
    
         
            +
            * Expose `fully_formatted` methods off the formatter notification objects
         
     | 
| 
      
 976 
     | 
    
         
            +
              that make it easy for a custom formatter to produce formatted output
         
     | 
| 
      
 977 
     | 
    
         
            +
              like rspec-core's. (Myron Marston)
         
     | 
| 
      
 978 
     | 
    
         
            +
             
     | 
| 
      
 979 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 980 
     | 
    
         
            +
             
     | 
| 
      
 981 
     | 
    
         
            +
            * Fix `spec_helper.rb` file generated by `rspec --init` so that the
         
     | 
| 
      
 982 
     | 
    
         
            +
              recommended settings correctly use the documentation formatter
         
     | 
| 
      
 983 
     | 
    
         
            +
              when running one file. (Myron Marston)
         
     | 
| 
      
 984 
     | 
    
         
            +
            * Fix ordering problem where descriptions were generated after
         
     | 
| 
      
 985 
     | 
    
         
            +
              tearing down mocks, which resulted in unexpected exceptions.
         
     | 
| 
      
 986 
     | 
    
         
            +
              (Bradley Schaefer, Aaron Kromer, Andrey Savchenko)
         
     | 
| 
      
 987 
     | 
    
         
            +
            * Allow a symbol to be used as an implicit subject (e.g. `describe
         
     | 
| 
      
 988 
     | 
    
         
            +
              :foo`). (Myron Marston)
         
     | 
| 
      
 989 
     | 
    
         
            +
            * Prevent creating an isolated context (i.e. using `RSpec.describe`) when
         
     | 
| 
      
 990 
     | 
    
         
            +
              already inside a context. There is no reason to do this, and it could
         
     | 
| 
      
 991 
     | 
    
         
            +
              potentially cause unexpected bugs. (Xavier Shay)
         
     | 
| 
      
 992 
     | 
    
         
            +
            * Fix shared example group scoping so that when two shared example
         
     | 
| 
      
 993 
     | 
    
         
            +
              groups share the same name at different levels of nested contexts,
         
     | 
| 
      
 994 
     | 
    
         
            +
              the one in the nearest context is used. (Myron Marston)
         
     | 
| 
      
 995 
     | 
    
         
            +
            * Fix `--warnings` option so that it enables warnings immediately so
         
     | 
| 
      
 996 
     | 
    
         
            +
              that it applies to files loaded by `--require`. (Myron Marston)
         
     | 
| 
      
 997 
     | 
    
         
            +
            * Issue a warning when you set `config.deprecation_stream` too late for
         
     | 
| 
      
 998 
     | 
    
         
            +
              it to take effect because the reporter has already been setup. (Myron Marston)
         
     | 
| 
      
 999 
     | 
    
         
            +
            * Add the full `RSpec::Core::Example` interface to the argument yielded
         
     | 
| 
      
 1000 
     | 
    
         
            +
              to `around` hooks. (Myron Marston)
         
     | 
| 
      
 1001 
     | 
    
         
            +
            * Line number always takes precendence when running specs with filters.
         
     | 
| 
      
 1002 
     | 
    
         
            +
              (Xavier Shay)
         
     | 
| 
      
 1003 
     | 
    
         
            +
            * Ensure :if and :unless metadata filters are treated as a special case
         
     | 
| 
      
 1004 
     | 
    
         
            +
              and are always in-effect. (Bradley Schaefer)
         
     | 
| 
      
 1005 
     | 
    
         
            +
            * Ensure the currently running installation of RSpec is used when
         
     | 
| 
      
 1006 
     | 
    
         
            +
              the rake task shells out to `rspec`, even if a newer version is also
         
     | 
| 
      
 1007 
     | 
    
         
            +
              installed. (Postmodern)
         
     | 
| 
      
 1008 
     | 
    
         
            +
            * Using a legacy formatter as default no longer causes an infinite loop.
         
     | 
| 
      
 1009 
     | 
    
         
            +
              (Xavier Shay)
         
     | 
| 
      
 1010 
     | 
    
         
            +
             
     | 
| 
      
 1011 
     | 
    
         
            +
            ### 3.0.0.beta2 / 2014-02-17
         
     | 
| 
      
 1012 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta1...v3.0.0.beta2)
         
     | 
| 
      
 1013 
     | 
    
         
            +
             
     | 
| 
      
 1014 
     | 
    
         
            +
            Breaking Changes for 3.0.0:
         
     | 
| 
      
 1015 
     | 
    
         
            +
             
     | 
| 
      
 1016 
     | 
    
         
            +
            * Make `mock_with` option more strict. Strings are no longer supported
         
     | 
| 
      
 1017 
     | 
    
         
            +
              (e.g. `mock_with "mocha"`) -- use a symbol instead. Also, unrecognized
         
     | 
| 
      
 1018 
     | 
    
         
            +
              values will now result in an error rather than falling back to the
         
     | 
| 
      
 1019 
     | 
    
         
            +
              null mocking adapter. If you want to use the null mocking adapter,
         
     | 
| 
      
 1020 
     | 
    
         
            +
              use `mock_with :nothing` (as has been documented for a long time).
         
     | 
| 
      
 1021 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1022 
     | 
    
         
            +
            * Remove support for overriding RSpec's built-in `:if` and `:unless`
         
     | 
| 
      
 1023 
     | 
    
         
            +
              filters. (Ashish Dixit)
         
     | 
| 
      
 1024 
     | 
    
         
            +
            * Custom formatters are now required to call
         
     | 
| 
      
 1025 
     | 
    
         
            +
              `RSpec::Core::Formatters.register(formatter_class, *notifications)`
         
     | 
| 
      
 1026 
     | 
    
         
            +
              where `notifications` is the list of events the formatter wishes to
         
     | 
| 
      
 1027 
     | 
    
         
            +
              be notified about. Notifications are handled by methods matching the
         
     | 
| 
      
 1028 
     | 
    
         
            +
              names on formatters. This allows us to add or remove notifications
         
     | 
| 
      
 1029 
     | 
    
         
            +
              without breaking existing formatters. (Jon Rowe)
         
     | 
| 
      
 1030 
     | 
    
         
            +
            * Change arguments passed to formatters. Rather than passing multiple
         
     | 
| 
      
 1031 
     | 
    
         
            +
              arguments (which limits are ability to add additional arguments as
         
     | 
| 
      
 1032 
     | 
    
         
            +
              doing so would break existing formatters), we now pass a notification
         
     | 
| 
      
 1033 
     | 
    
         
            +
              value object that exposes the same data via attributes. This will
         
     | 
| 
      
 1034 
     | 
    
         
            +
              allow us to add new bits of data to a notification event without
         
     | 
| 
      
 1035 
     | 
    
         
            +
              breaking existing formatters. (Jon Rowe)
         
     | 
| 
      
 1036 
     | 
    
         
            +
            * Remove support for deprecated `:alias` option for
         
     | 
| 
      
 1037 
     | 
    
         
            +
              `RSpec.configuration.add_setting`. (Myron Marston)
         
     | 
| 
      
 1038 
     | 
    
         
            +
            * Remove support for deprecated `RSpec.configuration.requires = [...]`.
         
     | 
| 
      
 1039 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1040 
     | 
    
         
            +
            * Remove support for deprecated `--formatter` CLI option. (Myron Marston)
         
     | 
| 
      
 1041 
     | 
    
         
            +
            * Remove support for deprecated `--configure` CLI option. (Myron Marston)
         
     | 
| 
      
 1042 
     | 
    
         
            +
            * Remove support for deprecated `RSpec::Core::RakeTask#spec_opts=`.
         
     | 
| 
      
 1043 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1044 
     | 
    
         
            +
            * An example group level `pending` block or `:pending` metadata now executes
         
     | 
| 
      
 1045 
     | 
    
         
            +
              the example and cause a failure if it passes, otherwise it will be pending if
         
     | 
| 
      
 1046 
     | 
    
         
            +
              it fails. The old "never run" behaviour is still used for `xexample`, `xit`,
         
     | 
| 
      
 1047 
     | 
    
         
            +
              and `xspecify`, or via a new `skip` method or `:skip` metadata option.
         
     | 
| 
      
 1048 
     | 
    
         
            +
              (Xavier Shay)
         
     | 
| 
      
 1049 
     | 
    
         
            +
            * After calling `pending` inside an example, the remainder of the example will
         
     | 
| 
      
 1050 
     | 
    
         
            +
              now be run. If it passes a failure is raised, otherwise the example is marked
         
     | 
| 
      
 1051 
     | 
    
         
            +
              pending. The old "never run" behaviour is provided a by a new `skip` method.
         
     | 
| 
      
 1052 
     | 
    
         
            +
              (Xavier Shay)
         
     | 
| 
      
 1053 
     | 
    
         
            +
            * Pending blocks inside an example have been removed as a feature with no
         
     | 
| 
      
 1054 
     | 
    
         
            +
              direct replacement. Use `skip` or `pending` without a block. (Xavier Shay)
         
     | 
| 
      
 1055 
     | 
    
         
            +
            * Pending statement is no longer allowed in `before(:all)` hooks. Use `skip`
         
     | 
| 
      
 1056 
     | 
    
         
            +
              instead.  (Xavier Shay)
         
     | 
| 
      
 1057 
     | 
    
         
            +
            * Remove `show_failures_in_pending_blocks` configuration option. (Xavier Shay)
         
     | 
| 
      
 1058 
     | 
    
         
            +
            * Remove support for specifying the documentation formatter using
         
     | 
| 
      
 1059 
     | 
    
         
            +
              's', 'n', 'spec' or 'nested'. (Jon Rowe)
         
     | 
| 
      
 1060 
     | 
    
         
            +
             
     | 
| 
      
 1061 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 1062 
     | 
    
         
            +
             
     | 
| 
      
 1063 
     | 
    
         
            +
            * Add example run time to JSON formatter output. (Karthik Kastury)
         
     | 
| 
      
 1064 
     | 
    
         
            +
            * Add more suggested settings to the files generated by
         
     | 
| 
      
 1065 
     | 
    
         
            +
              `rspec --init`. (Myron Marston)
         
     | 
| 
      
 1066 
     | 
    
         
            +
            * Add `config.alias_example_group_to`, which can be used to define a
         
     | 
| 
      
 1067 
     | 
    
         
            +
              new method that defines an example group with the provided metadata.
         
     | 
| 
      
 1068 
     | 
    
         
            +
              (Michi Huber)
         
     | 
| 
      
 1069 
     | 
    
         
            +
            * Add `xdescribe` and `xcontext` as shortcuts to skip an example group.
         
     | 
| 
      
 1070 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1071 
     | 
    
         
            +
            * Add `fdescribe` and `fcontext` as shortcuts to focus an example group.
         
     | 
| 
      
 1072 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1073 
     | 
    
         
            +
            * Don't autorun specs via `#at_exit` by default. `require 'rspec/autorun'`
         
     | 
| 
      
 1074 
     | 
    
         
            +
              is only needed when running specs via `ruby`, as it always has been.
         
     | 
| 
      
 1075 
     | 
    
         
            +
              Running specs via `rake` or `rspec` are both unaffected. (Ben Hoskings)
         
     | 
| 
      
 1076 
     | 
    
         
            +
            * Add `expose_dsl_globally` config option, defaulting to true. When disabled
         
     | 
| 
      
 1077 
     | 
    
         
            +
              it will remove the monkey patches rspec-core adds to `main` and `Module`
         
     | 
| 
      
 1078 
     | 
    
         
            +
              (e.g. `describe`, `shared_examples_for`, etc).  (Jon Rowe)
         
     | 
| 
      
 1079 
     | 
    
         
            +
            * Expose RSpec DSL entry point methods (`describe`,
         
     | 
| 
      
 1080 
     | 
    
         
            +
              `shared_examples_for`, etc) on the `RSpec` constant. Intended for use
         
     | 
| 
      
 1081 
     | 
    
         
            +
              when `expose_dsl_globally` is set to `false`. (Jon Rowe)
         
     | 
| 
      
 1082 
     | 
    
         
            +
            * For consistency, expose all example group aliases (including
         
     | 
| 
      
 1083 
     | 
    
         
            +
              `context`) on the `RSpec` constant. If `expose_dsl_globally` is set to
         
     | 
| 
      
 1084 
     | 
    
         
            +
              `true`, also expose them on `main` and `Module`. Historically, only `describe`
         
     | 
| 
      
 1085 
     | 
    
         
            +
              was exposed. (Jon Rowe, Michi Huber)
         
     | 
| 
      
 1086 
     | 
    
         
            +
            * Add hook scope `:example` as an alias for `:each`, and `:context` as an alias
         
     | 
| 
      
 1087 
     | 
    
         
            +
              for `:all`. (John Feminella)
         
     | 
| 
      
 1088 
     | 
    
         
            +
             
     | 
| 
      
 1089 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 1090 
     | 
    
         
            +
             
     | 
| 
      
 1091 
     | 
    
         
            +
            * Fix failure (undefined method `path`) in end-of-run summary
         
     | 
| 
      
 1092 
     | 
    
         
            +
              when `raise_errors_for_deprecations!` is configured. (Myron Marston)
         
     | 
| 
      
 1093 
     | 
    
         
            +
            * Issue error when attempting to use `-i` or `--I` on command line,
         
     | 
| 
      
 1094 
     | 
    
         
            +
              too close to `-I` to be considered short hand for `--init`. (Jon Rowe)
         
     | 
| 
      
 1095 
     | 
    
         
            +
            * Prevent adding formatters to an output target if the same
         
     | 
| 
      
 1096 
     | 
    
         
            +
              formatter has already been added to that output. (Alex Peattie)
         
     | 
| 
      
 1097 
     | 
    
         
            +
            * Allow a matcher-generated example description to be used when
         
     | 
| 
      
 1098 
     | 
    
         
            +
              the example is pending. (Myron Marston)
         
     | 
| 
      
 1099 
     | 
    
         
            +
            * Ensure the configured `failure_exit_code` is used by the rake
         
     | 
| 
      
 1100 
     | 
    
         
            +
              task when there is a failure. (Jon Rowe)
         
     | 
| 
      
 1101 
     | 
    
         
            +
            * Restore behaviour whereby system exclusion filters take priority over working
         
     | 
| 
      
 1102 
     | 
    
         
            +
              directory (was broken in beta1). (Jon Rowe)
         
     | 
| 
      
 1103 
     | 
    
         
            +
            * Prevent RSpec mangling file names that have substrings containing `line_number`
         
     | 
| 
      
 1104 
     | 
    
         
            +
              or `default_path`. (Matijs van Zuijlen)
         
     | 
| 
      
 1105 
     | 
    
         
            +
            * Fix failure line detection so that it handles relative file paths
         
     | 
| 
      
 1106 
     | 
    
         
            +
              (which can happen when running specs through `ruby` using `rspec/autorun`).
         
     | 
| 
      
 1107 
     | 
    
         
            +
              (Myron Marston, #1829)
         
     | 
| 
      
 1108 
     | 
    
         
            +
             
     | 
| 
      
 1109 
     | 
    
         
            +
            ### 3.0.0.beta1 / 2013-11-07
         
     | 
| 
      
 1110 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v3.0.0.beta1)
         
     | 
| 
      
 1111 
     | 
    
         
            +
             
     | 
| 
      
 1112 
     | 
    
         
            +
            Breaking Changes for 3.0.0:
         
     | 
| 
      
 1113 
     | 
    
         
            +
             
     | 
| 
      
 1114 
     | 
    
         
            +
            * Remove explicit support for 1.8.6. (Jon Rowe)
         
     | 
| 
      
 1115 
     | 
    
         
            +
            * Remove `RSpec::Core::ExampleGroup#example` and
         
     | 
| 
      
 1116 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup#running_example` methods. If you need
         
     | 
| 
      
 1117 
     | 
    
         
            +
              access to the example (e.g. to get its metadata), use a block arg
         
     | 
| 
      
 1118 
     | 
    
         
            +
              instead. (David Chelimsky)
         
     | 
| 
      
 1119 
     | 
    
         
            +
            * Remove `TextMateFormatter`, it has been moved to `rspec-tmbundle`.
         
     | 
| 
      
 1120 
     | 
    
         
            +
              (Aaron Kromer)
         
     | 
| 
      
 1121 
     | 
    
         
            +
            * Remove RCov integration. (Jon Rowe)
         
     | 
| 
      
 1122 
     | 
    
         
            +
            * Remove deprecated support for RSpec 1 constructs (Myron Marston):
         
     | 
| 
      
 1123 
     | 
    
         
            +
              * The `Spec` and `Rspec` constants (rather than `RSpec`).
         
     | 
| 
      
 1124 
     | 
    
         
            +
              * `Spec::Runner.configure` rather than `RSpec.configure`.
         
     | 
| 
      
 1125 
     | 
    
         
            +
              * `Rake::SpecTask` rather than `RSpec::Core::RakeTask`.
         
     | 
| 
      
 1126 
     | 
    
         
            +
            * Remove deprecated support for `share_as`. (Myron Marston)
         
     | 
| 
      
 1127 
     | 
    
         
            +
            * Remove `--debug` option (and corresponding option on
         
     | 
| 
      
 1128 
     | 
    
         
            +
              `RSpec::Core::Configuration`). Instead, use `-r<debugger gem name>` to
         
     | 
| 
      
 1129 
     | 
    
         
            +
              load whichever debugger gem you wish to use (e.g. `ruby-debug`,
         
     | 
| 
      
 1130 
     | 
    
         
            +
              `debugger`, or `pry`). (Myron Marston)
         
     | 
| 
      
 1131 
     | 
    
         
            +
            * Extract Autotest support to a seperate gem. (Jon Rowe)
         
     | 
| 
      
 1132 
     | 
    
         
            +
            * Raise an error when a `let` or `subject` declaration is
         
     | 
| 
      
 1133 
     | 
    
         
            +
              accessed in a `before(:all)` or `after(:all)` hook. (Myron Marston)
         
     | 
| 
      
 1134 
     | 
    
         
            +
            * Extract `its` support to a separate gem. (Peter Alfvin)
         
     | 
| 
      
 1135 
     | 
    
         
            +
            * Disallow use of a shared example group from sibling contexts, making them
         
     | 
| 
      
 1136 
     | 
    
         
            +
              fully isolated. 2.14 and 2.99 allowed this but printed a deprecation warning.
         
     | 
| 
      
 1137 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1138 
     | 
    
         
            +
            * Remove `RSpec::Core::Configuration#output` and
         
     | 
| 
      
 1139 
     | 
    
         
            +
              `RSpec::Core::Configuration#out` aliases of
         
     | 
| 
      
 1140 
     | 
    
         
            +
              `RSpec::Core::Configuration#output_stream`. (Myron Marston)
         
     | 
| 
      
 1141 
     | 
    
         
            +
            * Remove legacy ordering APIs deprecated in 2.99.0.beta1. (Myron
         
     | 
| 
      
 1142 
     | 
    
         
            +
              Marston)
         
     | 
| 
      
 1143 
     | 
    
         
            +
             
     | 
| 
      
 1144 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 1145 
     | 
    
         
            +
             
     | 
| 
      
 1146 
     | 
    
         
            +
            * Replace unmaintained syntax gem with coderay gem. (Xavier Shay)
         
     | 
| 
      
 1147 
     | 
    
         
            +
            * Times in profile output are now bold instead of `failure_color`.
         
     | 
| 
      
 1148 
     | 
    
         
            +
              (Matthew Boedicker)
         
     | 
| 
      
 1149 
     | 
    
         
            +
            * Add `--no-fail-fast` command line option. (Gonzalo Rodríguez-Baltanás Díaz)
         
     | 
| 
      
 1150 
     | 
    
         
            +
            * Runner now considers the local system ip address when running under Drb.
         
     | 
| 
      
 1151 
     | 
    
         
            +
              (Adrian CB)
         
     | 
| 
      
 1152 
     | 
    
         
            +
            * JsonFormatter now includes `--profile` information. (Alex / @MasterLambaster)
         
     | 
| 
      
 1153 
     | 
    
         
            +
            * Always treat symbols passed as metadata args as hash
         
     | 
| 
      
 1154 
     | 
    
         
            +
              keys with true values. RSpec 2 supported this with the
         
     | 
| 
      
 1155 
     | 
    
         
            +
              `treat_symbols_as_metadata_keys_with_true_values` but
         
     | 
| 
      
 1156 
     | 
    
         
            +
              now this behavior is always enabled. (Myron Marston)
         
     | 
| 
      
 1157 
     | 
    
         
            +
            * Add `--dry-run` option, which prints the formatter output
         
     | 
| 
      
 1158 
     | 
    
         
            +
              of your suite without running any examples or hooks.
         
     | 
| 
      
 1159 
     | 
    
         
            +
              (Thomas Stratmann, Myron Marston)
         
     | 
| 
      
 1160 
     | 
    
         
            +
            * Document the configuration options and default values in the `spec_helper.rb`
         
     | 
| 
      
 1161 
     | 
    
         
            +
              file that is generated by RSpec. (Parker Selbert)
         
     | 
| 
      
 1162 
     | 
    
         
            +
            * Give generated example group classes a friendly name derived
         
     | 
| 
      
 1163 
     | 
    
         
            +
              from the docstring, rather than something like "Nested_2".
         
     | 
| 
      
 1164 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1165 
     | 
    
         
            +
            * Avoid affecting randomization of user code when shuffling
         
     | 
| 
      
 1166 
     | 
    
         
            +
              examples so that users can count on their own seeds
         
     | 
| 
      
 1167 
     | 
    
         
            +
              working. (Travis Herrick)
         
     | 
| 
      
 1168 
     | 
    
         
            +
            * Ordering is no longer a single global property of the test suite.
         
     | 
| 
      
 1169 
     | 
    
         
            +
              Each group can pick an ordering using `:order` metadata. (Andy
         
     | 
| 
      
 1170 
     | 
    
         
            +
              Lindeman, Sam Phippen, Myron Marston)
         
     | 
| 
      
 1171 
     | 
    
         
            +
            * Allow named custom ordering strategies to be registered, which can
         
     | 
| 
      
 1172 
     | 
    
         
            +
              then be used on individual example groups. (Andy Lindeman, Sam
         
     | 
| 
      
 1173 
     | 
    
         
            +
              Phippen, Myron Marston)
         
     | 
| 
      
 1174 
     | 
    
         
            +
             
     | 
| 
      
 1175 
     | 
    
         
            +
            Deprecations:
         
     | 
| 
      
 1176 
     | 
    
         
            +
             
     | 
| 
      
 1177 
     | 
    
         
            +
            * `treat_symbols_as_metadata_keys_with_true_values` is deprecated and no
         
     | 
| 
      
 1178 
     | 
    
         
            +
              longer has an affect now that the behavior it enabled is always
         
     | 
| 
      
 1179 
     | 
    
         
            +
              enabled. (Myron Marston)
         
     | 
| 
      
 1180 
     | 
    
         
            +
             
     | 
| 
      
 1181 
     | 
    
         
            +
            ### 2.99.2 / 2014-08-19
         
     | 
| 
      
 1182 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v2.99.2)
         
     | 
| 
      
 1183 
     | 
    
         
            +
             
     | 
| 
      
 1184 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 1185 
     | 
    
         
            +
             
     | 
| 
      
 1186 
     | 
    
         
            +
            * Improve deprecation warning for RSpec 3 change in `describe <a symbol>`
         
     | 
| 
      
 1187 
     | 
    
         
            +
              behavior. (Jon Rowe, #1667)
         
     | 
| 
      
 1188 
     | 
    
         
            +
             
     | 
| 
      
 1189 
     | 
    
         
            +
            ### 2.99.1 / 2014-06-19
         
     | 
| 
      
 1190 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0...v2.99.1)
         
     | 
| 
      
 1191 
     | 
    
         
            +
             
     | 
| 
      
 1192 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 1193 
     | 
    
         
            +
             
     | 
| 
      
 1194 
     | 
    
         
            +
            * Add missing deprecation warning for when `RSpec::Core::Runner` is used
         
     | 
| 
      
 1195 
     | 
    
         
            +
              multiple times in the same process. In 2.x RSpec's global state was
         
     | 
| 
      
 1196 
     | 
    
         
            +
              automatically cleared between runs but in 3.0 you need to call `RSpec.reset`
         
     | 
| 
      
 1197 
     | 
    
         
            +
              manually in these situations. (Sam Phippen, #1587)
         
     | 
| 
      
 1198 
     | 
    
         
            +
            * Prevent deprecation being accidentally issues when doubles used with `be_`
         
     | 
| 
      
 1199 
     | 
    
         
            +
              matchers due to automatically generated descriptions. (Jon Rowe, #1573)
         
     | 
| 
      
 1200 
     | 
    
         
            +
            * Load `rspec/core` when loading `rspec/core/rake_task` to ensure we can
         
     | 
| 
      
 1201 
     | 
    
         
            +
              issue deprecations correctly. (Jon Rowe, #1612)
         
     | 
| 
      
 1202 
     | 
    
         
            +
             
     | 
| 
      
 1203 
     | 
    
         
            +
            ### 2.99.0 / 2014-06-01
         
     | 
| 
      
 1204 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v2.99.0)
         
     | 
| 
      
 1205 
     | 
    
         
            +
             
     | 
| 
      
 1206 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 1207 
     | 
    
         
            +
             
     | 
| 
      
 1208 
     | 
    
         
            +
            * Fix `BaseTextFormatter` so that it does not re-close a closed output
         
     | 
| 
      
 1209 
     | 
    
         
            +
              stream. (Myron Marston)
         
     | 
| 
      
 1210 
     | 
    
         
            +
            * Use `RSpec::Configuration#backtrace_exclusion_patterns` rather than the
         
     | 
| 
      
 1211 
     | 
    
         
            +
              deprecated `RSpec::Configuration#backtrace_clean_patterns` when mocking
         
     | 
| 
      
 1212 
     | 
    
         
            +
              with rr. (David Dollar)
         
     | 
| 
      
 1213 
     | 
    
         
            +
             
     | 
| 
      
 1214 
     | 
    
         
            +
            ### 2.99.0.rc1 / 2014-05-18
         
     | 
| 
      
 1215 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
         
     | 
| 
      
 1216 
     | 
    
         
            +
             
     | 
| 
      
 1217 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 1218 
     | 
    
         
            +
             
     | 
| 
      
 1219 
     | 
    
         
            +
            * Add `--deprecation-out` CLI option which directs deprecation warnings
         
     | 
| 
      
 1220 
     | 
    
         
            +
              to the named file. (Myron Marston)
         
     | 
| 
      
 1221 
     | 
    
         
            +
            * Backport support for `skip` in metadata to skip execution of an example.
         
     | 
| 
      
 1222 
     | 
    
         
            +
              (Xavier Shay, #1472)
         
     | 
| 
      
 1223 
     | 
    
         
            +
            * Add `Pathname` support for setting all output streams. (Aaron Kromer)
         
     | 
| 
      
 1224 
     | 
    
         
            +
            * Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
         
     | 
| 
      
 1225 
     | 
    
         
            +
             
     | 
| 
      
 1226 
     | 
    
         
            +
            Deprecations:
         
     | 
| 
      
 1227 
     | 
    
         
            +
             
     | 
| 
      
 1228 
     | 
    
         
            +
            * Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
         
     | 
| 
      
 1229 
     | 
    
         
            +
              `SkipDeclaredInExample` instead. (Xavier Shay)
         
     | 
| 
      
 1230 
     | 
    
         
            +
            * Issue a deprecation when `described_class` is accessed from within
         
     | 
| 
      
 1231 
     | 
    
         
            +
              a nested `describe <SomeClass>` example group, since `described_class`
         
     | 
| 
      
 1232 
     | 
    
         
            +
              will return the innermost described class in RSpec 3 rather than the
         
     | 
| 
      
 1233 
     | 
    
         
            +
              outermost described class, as it behaved in RSpec 2. (Myron Marston)
         
     | 
| 
      
 1234 
     | 
    
         
            +
            * Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
         
     | 
| 
      
 1235 
     | 
    
         
            +
              `RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
         
     | 
| 
      
 1236 
     | 
    
         
            +
              `#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
         
     | 
| 
      
 1237 
     | 
    
         
            +
            * Deprecate `RSpec::Core::Example#options` in favor of
         
     | 
| 
      
 1238 
     | 
    
         
            +
              `RSpec::Core::Example#metadata`. (Myron Marston)
         
     | 
| 
      
 1239 
     | 
    
         
            +
            * Issue warning when passing a symbol or hash to `describe` or `context`
         
     | 
| 
      
 1240 
     | 
    
         
            +
              as the first argument. In RSpec 2.x this would be treated as metadata
         
     | 
| 
      
 1241 
     | 
    
         
            +
              but in RSpec 3 it'll be treated as the described object. To continue
         
     | 
| 
      
 1242 
     | 
    
         
            +
              having it treated as metadata, pass a description before the symbol or
         
     | 
| 
      
 1243 
     | 
    
         
            +
              hash. (Myron Marston)
         
     | 
| 
      
 1244 
     | 
    
         
            +
            * Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
         
     | 
| 
      
 1245 
     | 
    
         
            +
              `RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
         
     | 
| 
      
 1246 
     | 
    
         
            +
              of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
         
     | 
| 
      
 1247 
     | 
    
         
            +
              `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
         
     | 
| 
      
 1248 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1249 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
         
     | 
| 
      
 1250 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup.description`. (Myron Marston)
         
     | 
| 
      
 1251 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
         
     | 
| 
      
 1252 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
         
     | 
| 
      
 1253 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
         
     | 
| 
      
 1254 
     | 
    
         
            +
              `RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
         
     | 
| 
      
 1255 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
         
     | 
| 
      
 1256 
     | 
    
         
            +
              of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
         
     | 
| 
      
 1257 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
         
     | 
| 
      
 1258 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup.focus`. (Myron Marston)
         
     | 
| 
      
 1259 
     | 
    
         
            +
            * Add deprecation warning for `config.filter_run :focused` since
         
     | 
| 
      
 1260 
     | 
    
         
            +
              example aliases `fit` and `focus` will no longer include
         
     | 
| 
      
 1261 
     | 
    
         
            +
              `:focused` metadata but will continue to include `:focus`. (Myron Marston)
         
     | 
| 
      
 1262 
     | 
    
         
            +
            * Deprecate filtering by `:line_number` (e.g. `--line-number` from the
         
     | 
| 
      
 1263 
     | 
    
         
            +
              CLI). Use location filtering instead. (Myron Marston)
         
     | 
| 
      
 1264 
     | 
    
         
            +
            * Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
         
     | 
| 
      
 1265 
     | 
    
         
            +
            * Deprecate `RSpec::Core::Configuration#warnings` in favor of
         
     | 
| 
      
 1266 
     | 
    
         
            +
              `RSpec::Core::Configuration#warnings?`. (Myron Marston)
         
     | 
| 
      
 1267 
     | 
    
         
            +
            * Deprecate `share_examples_for` in favor of `shared_examples_for` or
         
     | 
| 
      
 1268 
     | 
    
         
            +
              just `shared_examples`. (Myron Marston)
         
     | 
| 
      
 1269 
     | 
    
         
            +
            * Deprecate `RSpec::Core::CommandLine` in favor of
         
     | 
| 
      
 1270 
     | 
    
         
            +
              `RSpec::Core::Runner`. (Myron Marston)
         
     | 
| 
      
 1271 
     | 
    
         
            +
            * Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
         
     | 
| 
      
 1272 
     | 
    
         
            +
              `#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
         
     | 
| 
      
 1273 
     | 
    
         
            +
            * Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
         
     | 
| 
      
 1274 
     | 
    
         
            +
            * Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
         
     | 
| 
      
 1275 
     | 
    
         
            +
            * Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
         
     | 
| 
      
 1276 
     | 
    
         
            +
            * Deprecate `stdlib` as an available expectation framework in favour of
         
     | 
| 
      
 1277 
     | 
    
         
            +
              `test_unit` and `minitest`. (Aaron Kromer)
         
     | 
| 
      
 1278 
     | 
    
         
            +
             
     | 
| 
      
 1279 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 1280 
     | 
    
         
            +
             
     | 
| 
      
 1281 
     | 
    
         
            +
            * Issue a warning when you set `config.deprecation_stream` too late for
         
     | 
| 
      
 1282 
     | 
    
         
            +
              it to take effect because the reporter has already been setup. (Myron Marston)
         
     | 
| 
      
 1283 
     | 
    
         
            +
            * `skip` with a block should not execute the block. (Xavier Shay)
         
     | 
| 
      
 1284 
     | 
    
         
            +
             
     | 
| 
      
 1285 
     | 
    
         
            +
            ### 2.99.0.beta2 / 2014-02-17
         
     | 
| 
      
 1286 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
         
     | 
| 
      
 1287 
     | 
    
         
            +
             
     | 
| 
      
 1288 
     | 
    
         
            +
            Enhancements:
         
     | 
| 
      
 1289 
     | 
    
         
            +
             
     | 
| 
      
 1290 
     | 
    
         
            +
            * Add `is_expected` for one-liners that read well with the
         
     | 
| 
      
 1291 
     | 
    
         
            +
              `expect`-based syntax. `is_expected` is simply defined as
         
     | 
| 
      
 1292 
     | 
    
         
            +
              `expect(subject)` and can be used in an expression like:
         
     | 
| 
      
 1293 
     | 
    
         
            +
              `it { is_expected.to read_well }`. (Myron Marston)
         
     | 
| 
      
 1294 
     | 
    
         
            +
            * Backport `skip` from RSpec 3, which acts like `pending` did in RSpec 2
         
     | 
| 
      
 1295 
     | 
    
         
            +
              when not given a block, since the behavior of `pending` is changing in
         
     | 
| 
      
 1296 
     | 
    
         
            +
              RSpec 3. (Xavier Shay)
         
     | 
| 
      
 1297 
     | 
    
         
            +
             
     | 
| 
      
 1298 
     | 
    
         
            +
            Deprecations:
         
     | 
| 
      
 1299 
     | 
    
         
            +
             
     | 
| 
      
 1300 
     | 
    
         
            +
            * Deprecate inexact `mock_with` config options. RSpec 3 will only support
         
     | 
| 
      
 1301 
     | 
    
         
            +
              the exact symbols `:rspec`, `:mocha`, `:flexmock`, `:rr` or `:nothing`
         
     | 
| 
      
 1302 
     | 
    
         
            +
              (or any module that implements the adapter interface). RSpec 2 did
         
     | 
| 
      
 1303 
     | 
    
         
            +
              fuzzy matching but this will not be supported going forward.
         
     | 
| 
      
 1304 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1305 
     | 
    
         
            +
            * Deprecate `show_failures_in_pending_blocks` config option. To achieve
         
     | 
| 
      
 1306 
     | 
    
         
            +
              the same behavior as the option enabled, you can use a custom
         
     | 
| 
      
 1307 
     | 
    
         
            +
              formatter instead. (Xavier Shay)
         
     | 
| 
      
 1308 
     | 
    
         
            +
            * Add a deprecation warning for the fact that the behavior of `pending`
         
     | 
| 
      
 1309 
     | 
    
         
            +
              is changing in RSpec 3 -- rather than skipping the example (as it did
         
     | 
| 
      
 1310 
     | 
    
         
            +
              in 2.x when no block was provided), it will run the example and mark
         
     | 
| 
      
 1311 
     | 
    
         
            +
              it as failed if no exception is raised. Use `skip` instead to preserve
         
     | 
| 
      
 1312 
     | 
    
         
            +
              the old behavior. (Xavier Shay)
         
     | 
| 
      
 1313 
     | 
    
         
            +
            * Deprecate 's', 'n', 'spec' and 'nested' as aliases for documentation
         
     | 
| 
      
 1314 
     | 
    
         
            +
              formatter. (Jon Rowe)
         
     | 
| 
      
 1315 
     | 
    
         
            +
            * Deprecate `RSpec::Core::Reporter#abort` in favor of
         
     | 
| 
      
 1316 
     | 
    
         
            +
              `RSpec::Core::Reporter#finish`. (Jon Rowe)
         
     | 
| 
      
 1317 
     | 
    
         
            +
             
     | 
| 
      
 1318 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 1319 
     | 
    
         
            +
             
     | 
| 
      
 1320 
     | 
    
         
            +
            * Fix failure (undefined method `path`) in end-of-run summary
         
     | 
| 
      
 1321 
     | 
    
         
            +
              when `raise_errors_for_deprecations!` is configured. (Myron Marston)
         
     | 
| 
      
 1322 
     | 
    
         
            +
            * Fix issue were overridding spec ordering from the command line wasn't
         
     | 
| 
      
 1323 
     | 
    
         
            +
              fully recognised interally. (Jon Rowe)
         
     | 
| 
      
 1324 
     | 
    
         
            +
             
     | 
| 
      
 1325 
     | 
    
         
            +
            ### 2.99.0.beta1 / 2013-11-07
         
     | 
| 
      
 1326 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
         
     | 
| 
      
 1327 
     | 
    
         
            +
             
     | 
| 
      
 1328 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1329 
     | 
    
         
            +
             
     | 
| 
      
 1330 
     | 
    
         
            +
            * Block-based DSL methods that run in the context of an example
         
     | 
| 
      
 1331 
     | 
    
         
            +
              (`it`, `before(:each)`, `after(:each)`, `let` and `subject`)
         
     | 
| 
      
 1332 
     | 
    
         
            +
              now yield the example as a block argument. (David Chelimsky)
         
     | 
| 
      
 1333 
     | 
    
         
            +
            * Warn when the name of more than one example group is submitted to
         
     | 
| 
      
 1334 
     | 
    
         
            +
              `include_examples` and it's aliases. (David Chelimsky)
         
     | 
| 
      
 1335 
     | 
    
         
            +
            * Add `expose_current_running_example_as` config option for
         
     | 
| 
      
 1336 
     | 
    
         
            +
              use during the upgrade process when external gems use the
         
     | 
| 
      
 1337 
     | 
    
         
            +
              deprecated `RSpec::Core::ExampleGroup#example` and
         
     | 
| 
      
 1338 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup#running_example` methods. (Myron Marston)
         
     | 
| 
      
 1339 
     | 
    
         
            +
            * Limit spamminess of deprecation messages. (Bradley Schaefer, Loren Segal)
         
     | 
| 
      
 1340 
     | 
    
         
            +
            * Add `config.raise_errors_for_deprecations!` option, which turns
         
     | 
| 
      
 1341 
     | 
    
         
            +
              deprecations warnings into errors to surface the full backtrace
         
     | 
| 
      
 1342 
     | 
    
         
            +
              of the call site. (Myron Marston)
         
     | 
| 
      
 1343 
     | 
    
         
            +
             
     | 
| 
      
 1344 
     | 
    
         
            +
            Deprecations
         
     | 
| 
      
 1345 
     | 
    
         
            +
             
     | 
| 
      
 1346 
     | 
    
         
            +
            * Deprecate `RSpec::Core::ExampleGroup#example` and
         
     | 
| 
      
 1347 
     | 
    
         
            +
              `RSpec::Core::ExampleGroup#running_example` methods. If you need
         
     | 
| 
      
 1348 
     | 
    
         
            +
              access to the example (e.g. to get its metadata), use a block argument
         
     | 
| 
      
 1349 
     | 
    
         
            +
              instead. (David Chelimsky)
         
     | 
| 
      
 1350 
     | 
    
         
            +
            * Deprecate use of `autotest/rspec2` in favour of `rspec-autotest`. (Jon Rowe)
         
     | 
| 
      
 1351 
     | 
    
         
            +
            * Deprecate RSpec's built-in debugger support. Use a CLI option like
         
     | 
| 
      
 1352 
     | 
    
         
            +
              `-rruby-debug` (for the ruby-debug gem) or `-rdebugger` (for the
         
     | 
| 
      
 1353 
     | 
    
         
            +
              debugger gem) instead. (Myron Marston)
         
     | 
| 
      
 1354 
     | 
    
         
            +
            * Deprecate `RSpec.configuration.treat_symbols_as_metadata_keys_with_true_values = false`.
         
     | 
| 
      
 1355 
     | 
    
         
            +
              RSpec 3 will not support having this option set to `false`. (Myron Marston)
         
     | 
| 
      
 1356 
     | 
    
         
            +
            * Deprecate accessing a `let` or `subject` declaration in
         
     | 
| 
      
 1357 
     | 
    
         
            +
              a `after(:all)` hook. (Myron Marston, Jon Rowe)
         
     | 
| 
      
 1358 
     | 
    
         
            +
            * Deprecate built-in `its` usage in favor of `rspec-its` gem due to planned
         
     | 
| 
      
 1359 
     | 
    
         
            +
              removal in RSpec 3. (Peter Alfvin)
         
     | 
| 
      
 1360 
     | 
    
         
            +
            * Deprecate `RSpec::Core::PendingExampleFixedError` in favor of
         
     | 
| 
      
 1361 
     | 
    
         
            +
              `RSpec::Core::Pending::PendingExampleFixedError`. (Myron Marston)
         
     | 
| 
      
 1362 
     | 
    
         
            +
            * Deprecate `RSpec::Core::Configuration#out` and
         
     | 
| 
      
 1363 
     | 
    
         
            +
              `RSpec::Core::Configuration#output` in favor of
         
     | 
| 
      
 1364 
     | 
    
         
            +
              `RSpec::Core::Configuration#output_stream`. (Myron Marston)
         
     | 
| 
      
 1365 
     | 
    
         
            +
            * Deprecate legacy ordering APIs.
         
     | 
| 
      
 1366 
     | 
    
         
            +
              * You should use `register_ordering(:global)` instead of these:
         
     | 
| 
      
 1367 
     | 
    
         
            +
                * `RSpec::Core::Configuration#order_examples`
         
     | 
| 
      
 1368 
     | 
    
         
            +
                * `RSpec::Core::Configuration#order_groups`
         
     | 
| 
      
 1369 
     | 
    
         
            +
                * `RSpec::Core::Configuration#order_groups_and_examples`
         
     | 
| 
      
 1370 
     | 
    
         
            +
              * These are deprecated with no replacement because in RSpec 3
         
     | 
| 
      
 1371 
     | 
    
         
            +
                ordering is a property of individual example groups rather than
         
     | 
| 
      
 1372 
     | 
    
         
            +
                just a global property of the entire test suite:
         
     | 
| 
      
 1373 
     | 
    
         
            +
                * `RSpec::Core::Configuration#order`
         
     | 
| 
      
 1374 
     | 
    
         
            +
                * `RSpec::Core::Configuration#randomize?`
         
     | 
| 
      
 1375 
     | 
    
         
            +
              * `--order default` is deprecated in favor of `--order defined`
         
     | 
| 
      
 1376 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1377 
     | 
    
         
            +
             
     | 
| 
      
 1378 
     | 
    
         
            +
            ### 2.14.8 / 2014-02-27
         
     | 
| 
      
 1379 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
         
     | 
| 
      
 1380 
     | 
    
         
            +
             
     | 
| 
      
 1381 
     | 
    
         
            +
            Bug fixes:
         
     | 
| 
      
 1382 
     | 
    
         
            +
             
     | 
| 
      
 1383 
     | 
    
         
            +
            * Fix regression with the `textmateformatter` that prevented backtrace links
         
     | 
| 
      
 1384 
     | 
    
         
            +
              from being clickable. (Stefan Daschek)
         
     | 
| 
      
 1385 
     | 
    
         
            +
             
     | 
| 
      
 1386 
     | 
    
         
            +
            ### 2.14.7 / 2013-10-29
         
     | 
| 
      
 1387 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
         
     | 
| 
      
 1388 
     | 
    
         
            +
             
     | 
| 
      
 1389 
     | 
    
         
            +
            Bug fixes:
         
     | 
| 
      
 1390 
     | 
    
         
            +
             
     | 
| 
      
 1391 
     | 
    
         
            +
            * Fix regression in 2.14.6 that broke the Fivemat formatter.
         
     | 
| 
      
 1392 
     | 
    
         
            +
              It depended upon either
         
     | 
| 
      
 1393 
     | 
    
         
            +
              `example.execution_result[:exception].pending_fixed?` (which
         
     | 
| 
      
 1394 
     | 
    
         
            +
              was removed in 2.14.6 to fix an issue with frozen error objects)
         
     | 
| 
      
 1395 
     | 
    
         
            +
              or `RSpec::Core::PendingExampleFixedError` (which was renamed
         
     | 
| 
      
 1396 
     | 
    
         
            +
              to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
         
     | 
| 
      
 1397 
     | 
    
         
            +
              This fix makes a constant alias for the old error name.
         
     | 
| 
      
 1398 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1399 
     | 
    
         
            +
             
     | 
| 
      
 1400 
     | 
    
         
            +
            ### 2.14.6 / 2013-10-15
         
     | 
| 
      
 1401 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
         
     | 
| 
      
 1402 
     | 
    
         
            +
             
     | 
| 
      
 1403 
     | 
    
         
            +
            Bug fixes:
         
     | 
| 
      
 1404 
     | 
    
         
            +
             
     | 
| 
      
 1405 
     | 
    
         
            +
            * Format stringified numbers correctly when mathn library is loaded.
         
     | 
| 
      
 1406 
     | 
    
         
            +
              (Jay Hayes)
         
     | 
| 
      
 1407 
     | 
    
         
            +
            * Fix an issue that prevented the use of frozen error objects. (Lars
         
     | 
| 
      
 1408 
     | 
    
         
            +
              Gierth)
         
     | 
| 
      
 1409 
     | 
    
         
            +
             
     | 
| 
      
 1410 
     | 
    
         
            +
            ### 2.14.5 / 2013-08-13
         
     | 
| 
      
 1411 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
         
     | 
| 
      
 1412 
     | 
    
         
            +
             
     | 
| 
      
 1413 
     | 
    
         
            +
            Bug fixes:
         
     | 
| 
      
 1414 
     | 
    
         
            +
             
     | 
| 
      
 1415 
     | 
    
         
            +
            * Fix a `NoMethodError` that was being raised when there were no shared
         
     | 
| 
      
 1416 
     | 
    
         
            +
              examples or contexts declared and `RSpec.world.reset` is invoked.
         
     | 
| 
      
 1417 
     | 
    
         
            +
              (thepoho, Jon Rowe, Myron Marston)
         
     | 
| 
      
 1418 
     | 
    
         
            +
            * Fix a deprecation warning that was being incorrectly displayed when
         
     | 
| 
      
 1419 
     | 
    
         
            +
              `shared_examples` are declared at top level in a `module` scope.
         
     | 
| 
      
 1420 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1421 
     | 
    
         
            +
            * Fix after(:all) hooks so consecutive (same context) scopes will run even if
         
     | 
| 
      
 1422 
     | 
    
         
            +
              one raises an error. (Jon Rowe, Trejkaz)
         
     | 
| 
      
 1423 
     | 
    
         
            +
            * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
         
     | 
| 
      
 1424 
     | 
    
         
            +
             
     | 
| 
      
 1425 
     | 
    
         
            +
            ### 2.14.4 / 2013-07-21
         
     | 
| 
      
 1426 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
         
     | 
| 
      
 1427 
     | 
    
         
            +
             
     | 
| 
      
 1428 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1429 
     | 
    
         
            +
             
     | 
| 
      
 1430 
     | 
    
         
            +
            * Fix regression in 2.14: ensure configured requires (via `-r` option)
         
     | 
| 
      
 1431 
     | 
    
         
            +
              are loaded before spec files are loaded. This allows the spec files
         
     | 
| 
      
 1432 
     | 
    
         
            +
              to programatically change the file pattern (Jon Rowe).
         
     | 
| 
      
 1433 
     | 
    
         
            +
            * Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if
         
     | 
| 
      
 1434 
     | 
    
         
            +
              they are not already loaded (`RSpec::Matches` has been autoloaded
         
     | 
| 
      
 1435 
     | 
    
         
            +
              for a while). In the `rspec` gem, we changed it recently to stop
         
     | 
| 
      
 1436 
     | 
    
         
            +
              loading `rspec/mocks` and `rspec/expectations` by default, as some
         
     | 
| 
      
 1437 
     | 
    
         
            +
              users reported problems where they were intending to use mocha,
         
     | 
| 
      
 1438 
     | 
    
         
            +
              not rspec-mocks, but rspec-mocks was loaded and causing a conflict.
         
     | 
| 
      
 1439 
     | 
    
         
            +
              rspec-core loads mocks and expectations at the appropriate time, so
         
     | 
| 
      
 1440 
     | 
    
         
            +
              it seemed like a safe change -- but caused a problem for some authors
         
     | 
| 
      
 1441 
     | 
    
         
            +
              of libraries that integrate with RSpec. This fixes that problem.
         
     | 
| 
      
 1442 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1443 
     | 
    
         
            +
            * Gracefully handle a command like `rspec --profile path/to/spec.rb`:
         
     | 
| 
      
 1444 
     | 
    
         
            +
              the `path/to/spec.rb` arg was being wrongly treated as the `profile`
         
     | 
| 
      
 1445 
     | 
    
         
            +
              integer arg, which got cast `0` using `to_i`, causing no profiled
         
     | 
| 
      
 1446 
     | 
    
         
            +
              examples to be printed. (Jon Rowe)
         
     | 
| 
      
 1447 
     | 
    
         
            +
             
     | 
| 
      
 1448 
     | 
    
         
            +
            ### 2.14.3 / 2013-07-13
         
     | 
| 
      
 1449 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
         
     | 
| 
      
 1450 
     | 
    
         
            +
             
     | 
| 
      
 1451 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1452 
     | 
    
         
            +
             
     | 
| 
      
 1453 
     | 
    
         
            +
            * Fix deprecation notices issued from `RSpec::Core::RakeTask` so
         
     | 
| 
      
 1454 
     | 
    
         
            +
              that they work properly when all of rspec-core is not loaded.
         
     | 
| 
      
 1455 
     | 
    
         
            +
              (This was a regression in 2.14) (Jon Rowe)
         
     | 
| 
      
 1456 
     | 
    
         
            +
             
     | 
| 
      
 1457 
     | 
    
         
            +
            ### 2.14.2 / 2013-07-09
         
     | 
| 
      
 1458 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
         
     | 
| 
      
 1459 
     | 
    
         
            +
             
     | 
| 
      
 1460 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1461 
     | 
    
         
            +
             
     | 
| 
      
 1462 
     | 
    
         
            +
            * Fix regression caused by 2.14.1 release: formatters that
         
     | 
| 
      
 1463 
     | 
    
         
            +
              report that they `respond_to?` a notification, but had
         
     | 
| 
      
 1464 
     | 
    
         
            +
              no corresponding method would raise an error when registered.
         
     | 
| 
      
 1465 
     | 
    
         
            +
              The new fix is to just implement `start` on the deprecation
         
     | 
| 
      
 1466 
     | 
    
         
            +
              formatter to fix the original JRuby/ruby-debug issue.
         
     | 
| 
      
 1467 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1468 
     | 
    
         
            +
             
     | 
| 
      
 1469 
     | 
    
         
            +
            ### 2.14.1 / 2013-07-08
         
     | 
| 
      
 1470 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
         
     | 
| 
      
 1471 
     | 
    
         
            +
             
     | 
| 
      
 1472 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1473 
     | 
    
         
            +
             
     | 
| 
      
 1474 
     | 
    
         
            +
            * Address deprecation formatter failure when using `ruby-debug` on
         
     | 
| 
      
 1475 
     | 
    
         
            +
              JRuby: fix `RSpec::Core::Reporter` to not send a notification
         
     | 
| 
      
 1476 
     | 
    
         
            +
              when the formatter's implementation of the notification method
         
     | 
| 
      
 1477 
     | 
    
         
            +
              comes from `Kernel` (Alex Portnov, Jon Rowe).
         
     | 
| 
      
 1478 
     | 
    
         
            +
             
     | 
| 
      
 1479 
     | 
    
         
            +
            ### 2.14.0 / 2013-07-06
         
     | 
| 
      
 1480 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
         
     | 
| 
      
 1481 
     | 
    
         
            +
             
     | 
| 
      
 1482 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1483 
     | 
    
         
            +
             
     | 
| 
      
 1484 
     | 
    
         
            +
            * Apply focus to examples defined with `fit` (equivalent of
         
     | 
| 
      
 1485 
     | 
    
         
            +
              `it "description", focus: true`) (Michael de Silva)
         
     | 
| 
      
 1486 
     | 
    
         
            +
             
     | 
| 
      
 1487 
     | 
    
         
            +
            Bug fix
         
     | 
| 
      
 1488 
     | 
    
         
            +
             
     | 
| 
      
 1489 
     | 
    
         
            +
            * Ensure methods defined by `let` take precedence over others
         
     | 
| 
      
 1490 
     | 
    
         
            +
              when there is a name collision (e.g. from an included module).
         
     | 
| 
      
 1491 
     | 
    
         
            +
              (Jon Rowe, Andy Lindeman and Myron Marston)
         
     | 
| 
      
 1492 
     | 
    
         
            +
             
     | 
| 
      
 1493 
     | 
    
         
            +
            ### 2.14.0.rc1 / 2013-05-27
         
     | 
| 
      
 1494 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
         
     | 
| 
      
 1495 
     | 
    
         
            +
             
     | 
| 
      
 1496 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1497 
     | 
    
         
            +
             
     | 
| 
      
 1498 
     | 
    
         
            +
            * Improved Windows detection inside Git Bash, for better `--color` handling.
         
     | 
| 
      
 1499 
     | 
    
         
            +
            * Add profiling of the slowest example groups to `--profile` option.
         
     | 
| 
      
 1500 
     | 
    
         
            +
              The output is sorted by the slowest average example groups.
         
     | 
| 
      
 1501 
     | 
    
         
            +
            * Don't show slow examples if there's a failure and both `--fail-fast`
         
     | 
| 
      
 1502 
     | 
    
         
            +
              and `--profile` options are used (Paweł Gościcki).
         
     | 
| 
      
 1503 
     | 
    
         
            +
            * Rather than always adding `spec` to the load path, add the configured
         
     | 
| 
      
 1504 
     | 
    
         
            +
              `--default-path` to the load path (which defaults to `spec`). This
         
     | 
| 
      
 1505 
     | 
    
         
            +
              better supports folks who choose to put their specs in a different
         
     | 
| 
      
 1506 
     | 
    
         
            +
              directory (John Feminella).
         
     | 
| 
      
 1507 
     | 
    
         
            +
            * Add some logic to test time duration precision. Make it a
         
     | 
| 
      
 1508 
     | 
    
         
            +
              function of time, dropping precision as the time increases. (Aaron Kromer)
         
     | 
| 
      
 1509 
     | 
    
         
            +
            * Add new `backtrace_inclusion_patterns` config option. Backtrace lines
         
     | 
| 
      
 1510 
     | 
    
         
            +
              that match one of these patterns will _always_ be included in the
         
     | 
| 
      
 1511 
     | 
    
         
            +
              backtrace, even if they match an exclusion pattern, too (Sam Phippen).
         
     | 
| 
      
 1512 
     | 
    
         
            +
            * Support ERB trim mode using the `-` when parsing `.rspec` as ERB
         
     | 
| 
      
 1513 
     | 
    
         
            +
              (Gabor Garami).
         
     | 
| 
      
 1514 
     | 
    
         
            +
            * Give a better error message when let and subject are called without a block.
         
     | 
| 
      
 1515 
     | 
    
         
            +
              (Sam Phippen).
         
     | 
| 
      
 1516 
     | 
    
         
            +
            * List the precedence of `.rspec-local` in the configuration documentation
         
     | 
| 
      
 1517 
     | 
    
         
            +
              (Sam Phippen)
         
     | 
| 
      
 1518 
     | 
    
         
            +
            * Support `{a,b}` shell expansion syntax in `--pattern` option
         
     | 
| 
      
 1519 
     | 
    
         
            +
              (Konstantin Haase).
         
     | 
| 
      
 1520 
     | 
    
         
            +
            * Add cucumber documentation for --require command line option
         
     | 
| 
      
 1521 
     | 
    
         
            +
              (Bradley Schaefer)
         
     | 
| 
      
 1522 
     | 
    
         
            +
            * Expose configuration options via config:
         
     | 
| 
      
 1523 
     | 
    
         
            +
              * `config.libs` returns the libs configured to be added onto the load path
         
     | 
| 
      
 1524 
     | 
    
         
            +
              * `full_backtrace?` returns the state of the backtrace cleaner
         
     | 
| 
      
 1525 
     | 
    
         
            +
              * `debug?` returns true when the debugger is loaded
         
     | 
| 
      
 1526 
     | 
    
         
            +
              * `line_numbers` returns the line numbers we are filtering by (if any)
         
     | 
| 
      
 1527 
     | 
    
         
            +
              * `full_description` returns the RegExp used to filter descriptions
         
     | 
| 
      
 1528 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1529 
     | 
    
         
            +
            * Add setters for RSpec.world and RSpec.configuration (Alex Soulim)
         
     | 
| 
      
 1530 
     | 
    
         
            +
            * Configure ruby's warning behaviour with `--warnings` (Jon Rowe)
         
     | 
| 
      
 1531 
     | 
    
         
            +
            * Fix an obscure issue on old versions of `1.8.7` where `Time.dup` wouldn't
         
     | 
| 
      
 1532 
     | 
    
         
            +
              allow access to `Time.now` (Jon Rowe)
         
     | 
| 
      
 1533 
     | 
    
         
            +
            * Make `shared_examples_for` context aware, so that keys may be safely reused
         
     | 
| 
      
 1534 
     | 
    
         
            +
              in multiple contexts without colliding. (Jon Rowe)
         
     | 
| 
      
 1535 
     | 
    
         
            +
            * Add a configurable `deprecation_stream` (Jon Rowe)
         
     | 
| 
      
 1536 
     | 
    
         
            +
            * Publish deprecations through a formatter (David Chelimsky)
         
     | 
| 
      
 1537 
     | 
    
         
            +
             
     | 
| 
      
 1538 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1539 
     | 
    
         
            +
             
     | 
| 
      
 1540 
     | 
    
         
            +
            * Make JSON formatter behave the same when it comes to `--profile` as
         
     | 
| 
      
 1541 
     | 
    
         
            +
              the text formatter (Paweł Gościcki).
         
     | 
| 
      
 1542 
     | 
    
         
            +
            * Fix named subjects so that if an inner group defines a method that
         
     | 
| 
      
 1543 
     | 
    
         
            +
              overrides the named method, `subject` still retains the originally
         
     | 
| 
      
 1544 
     | 
    
         
            +
              declared value (Myron Marston).
         
     | 
| 
      
 1545 
     | 
    
         
            +
            * Fix random ordering so that it does not cause `rand` in examples in
         
     | 
| 
      
 1546 
     | 
    
         
            +
              nested sibling contexts to return the same value (Max Shytikov).
         
     | 
| 
      
 1547 
     | 
    
         
            +
            * Use the new `backtrace_inclusion_patterns` config option to ensure
         
     | 
| 
      
 1548 
     | 
    
         
            +
              that folks who develop code in a directory matching one of the default
         
     | 
| 
      
 1549 
     | 
    
         
            +
              exclusion patterns (e.g. `gems`) still get the normal backtrace
         
     | 
| 
      
 1550 
     | 
    
         
            +
              filtering (Sam Phippen).
         
     | 
| 
      
 1551 
     | 
    
         
            +
            * Fix ordering of `before` hooks so that `before` hooks declared in
         
     | 
| 
      
 1552 
     | 
    
         
            +
              `RSpec.configure` run before `before` hooks declared in a shared
         
     | 
| 
      
 1553 
     | 
    
         
            +
              context (Michi Huber and Tejas Dinkar).
         
     | 
| 
      
 1554 
     | 
    
         
            +
            * Fix `Example#full_description` so that it gets filled in by the last
         
     | 
| 
      
 1555 
     | 
    
         
            +
              matcher description (as `Example#description` already did) when no
         
     | 
| 
      
 1556 
     | 
    
         
            +
              doc string has been provided (David Chelimsky).
         
     | 
| 
      
 1557 
     | 
    
         
            +
            * Fix the memoized methods (`let` and `subject`) leaking `define_method`
         
     | 
| 
      
 1558 
     | 
    
         
            +
              as a `public` method. (Thomas Holmes and Jon Rowe) (#873)
         
     | 
| 
      
 1559 
     | 
    
         
            +
            * Fix warnings coming from the test suite. (Pete Higgins)
         
     | 
| 
      
 1560 
     | 
    
         
            +
             
     | 
| 
      
 1561 
     | 
    
         
            +
            Deprecations
         
     | 
| 
      
 1562 
     | 
    
         
            +
             
     | 
| 
      
 1563 
     | 
    
         
            +
            * Deprecate `Configuration#backtrace_clean_patterns` in favor of
         
     | 
| 
      
 1564 
     | 
    
         
            +
              `Configuration#backtrace_exclusion_patterns` for greater consistency
         
     | 
| 
      
 1565 
     | 
    
         
            +
              and symmetry with new `backtrace_inclusion_patterns` config option
         
     | 
| 
      
 1566 
     | 
    
         
            +
              (Sam Phippen).
         
     | 
| 
      
 1567 
     | 
    
         
            +
            * Deprecate `Configuration#requires=` in favor of using ruby's
         
     | 
| 
      
 1568 
     | 
    
         
            +
              `require`. Requires specified by the command line can still be
         
     | 
| 
      
 1569 
     | 
    
         
            +
              accessed by the `Configuration#require` reader. (Bradley Schaefer)
         
     | 
| 
      
 1570 
     | 
    
         
            +
            * Deprecate calling `SharedExampleGroups` defined across sibling contexts
         
     | 
| 
      
 1571 
     | 
    
         
            +
              (Jon Rowe)
         
     | 
| 
      
 1572 
     | 
    
         
            +
             
     | 
| 
      
 1573 
     | 
    
         
            +
            ### 2.13.1 / 2013-03-12
         
     | 
| 
      
 1574 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
         
     | 
| 
      
 1575 
     | 
    
         
            +
             
     | 
| 
      
 1576 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1577 
     | 
    
         
            +
             
     | 
| 
      
 1578 
     | 
    
         
            +
            * Use hook classes as proxies rather than extending hook blocks to support
         
     | 
| 
      
 1579 
     | 
    
         
            +
              lambdas for before/after/around hooks. (David Chelimsky)
         
     | 
| 
      
 1580 
     | 
    
         
            +
            * Fix regression in 2.13.0 that caused confusing behavior when overriding
         
     | 
| 
      
 1581 
     | 
    
         
            +
              a named subject with an unnamed subject in an inner group and then
         
     | 
| 
      
 1582 
     | 
    
         
            +
              referencing the outer group subject's name. The fix for this required
         
     | 
| 
      
 1583 
     | 
    
         
            +
              us to disallow using `super` in a named subject (which is confusing,
         
     | 
| 
      
 1584 
     | 
    
         
            +
              anyway -- named subjects create 2 methods, so which method on the
         
     | 
| 
      
 1585 
     | 
    
         
            +
              parent example group are you `super`ing to?) but `super` in an unnamed
         
     | 
| 
      
 1586 
     | 
    
         
            +
              subject continues to work (Myron Marston).
         
     | 
| 
      
 1587 
     | 
    
         
            +
            * Do not allow a referenced `let` or `subject` in `before(:all)` to cause
         
     | 
| 
      
 1588 
     | 
    
         
            +
              other `let` declarations to leak across examples (Myron Marston).
         
     | 
| 
      
 1589 
     | 
    
         
            +
            * Work around odd ruby 1.9 bug with `String#match` that was triggered
         
     | 
| 
      
 1590 
     | 
    
         
            +
              by passing it a regex from a `let` declaration. For more info, see
         
     | 
| 
      
 1591 
     | 
    
         
            +
              http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
         
     | 
| 
      
 1592 
     | 
    
         
            +
            * Add missing `require 'set'` to `base_text_formatter.rb` (Tom
         
     | 
| 
      
 1593 
     | 
    
         
            +
              Anderson).
         
     | 
| 
      
 1594 
     | 
    
         
            +
             
     | 
| 
      
 1595 
     | 
    
         
            +
            Deprecations
         
     | 
| 
      
 1596 
     | 
    
         
            +
             
     | 
| 
      
 1597 
     | 
    
         
            +
            * Deprecate accessing `let` or `subject` declarations in `before(:all)`.
         
     | 
| 
      
 1598 
     | 
    
         
            +
              These were not intended to be called in a `before(:all)` hook, as
         
     | 
| 
      
 1599 
     | 
    
         
            +
              they exist to define state that is reset between each example, while
         
     | 
| 
      
 1600 
     | 
    
         
            +
              `before(:all)` exists to define state that is shared across examples
         
     | 
| 
      
 1601 
     | 
    
         
            +
              in an example group (Myron Marston).
         
     | 
| 
      
 1602 
     | 
    
         
            +
             
     | 
| 
      
 1603 
     | 
    
         
            +
            ### 2.13.0 / 2013-02-23
         
     | 
| 
      
 1604 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
         
     | 
| 
      
 1605 
     | 
    
         
            +
             
     | 
| 
      
 1606 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1607 
     | 
    
         
            +
             
     | 
| 
      
 1608 
     | 
    
         
            +
            * Allow `--profile` option to take a count argument that
         
     | 
| 
      
 1609 
     | 
    
         
            +
              determines the number of slow examples to dump
         
     | 
| 
      
 1610 
     | 
    
         
            +
              (Greggory Rothmeier).
         
     | 
| 
      
 1611 
     | 
    
         
            +
            * Add `subject!` that is the analog to `let!`. It defines an
         
     | 
| 
      
 1612 
     | 
    
         
            +
              explicit subject and sets a `before` hook that will invoke
         
     | 
| 
      
 1613 
     | 
    
         
            +
              the subject (Zubin Henner).
         
     | 
| 
      
 1614 
     | 
    
         
            +
            * Fix `let` and `subject` declaration so that `super`
         
     | 
| 
      
 1615 
     | 
    
         
            +
              and `return` can be used in them, just like in a normal
         
     | 
| 
      
 1616 
     | 
    
         
            +
              method. (Myron Marston)
         
     | 
| 
      
 1617 
     | 
    
         
            +
            * Allow output colors to be configured individually.
         
     | 
| 
      
 1618 
     | 
    
         
            +
              (Charlie Maffitt)
         
     | 
| 
      
 1619 
     | 
    
         
            +
            * Always dump slow examples when `--profile` option is given,
         
     | 
| 
      
 1620 
     | 
    
         
            +
              even when an example failed (Myron Marston).
         
     | 
| 
      
 1621 
     | 
    
         
            +
             
     | 
| 
      
 1622 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1623 
     | 
    
         
            +
             
     | 
| 
      
 1624 
     | 
    
         
            +
            * Don't blow up when dumping error output for instances
         
     | 
| 
      
 1625 
     | 
    
         
            +
              of anonymous error classes (Myron Marston).
         
     | 
| 
      
 1626 
     | 
    
         
            +
            * Fix default backtrace filters so lines from projects
         
     | 
| 
      
 1627 
     | 
    
         
            +
              containing "gems" in the name are not filtered, but
         
     | 
| 
      
 1628 
     | 
    
         
            +
              lines from installed gems still are (Myron Marston).
         
     | 
| 
      
 1629 
     | 
    
         
            +
            * Fix autotest command so that is uses double quotes
         
     | 
| 
      
 1630 
     | 
    
         
            +
              rather than single quotes for windows compatibility
         
     | 
| 
      
 1631 
     | 
    
         
            +
              (Jonas Tingeborn).
         
     | 
| 
      
 1632 
     | 
    
         
            +
            * Fix `its` so that uses of `subject` in a `before` or `let`
         
     | 
| 
      
 1633 
     | 
    
         
            +
              declaration in the parent group continue to reference the
         
     | 
| 
      
 1634 
     | 
    
         
            +
              parent group's subject. (Olek Janiszewski)
         
     | 
| 
      
 1635 
     | 
    
         
            +
             
     | 
| 
      
 1636 
     | 
    
         
            +
            ### 2.12.2 / 2012-12-13
         
     | 
| 
      
 1637 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
         
     | 
| 
      
 1638 
     | 
    
         
            +
             
     | 
| 
      
 1639 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1640 
     | 
    
         
            +
             
     | 
| 
      
 1641 
     | 
    
         
            +
            * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7
         
     | 
| 
      
 1642 
     | 
    
         
            +
              on ruby 1.8.7. We had accidentally broke it in the 2.12 release
         
     | 
| 
      
 1643 
     | 
    
         
            +
              (Myron Marston).
         
     | 
| 
      
 1644 
     | 
    
         
            +
            * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant
         
     | 
| 
      
 1645 
     | 
    
         
            +
              for backwards compatibility (Patrick Van Stee)
         
     | 
| 
      
 1646 
     | 
    
         
            +
             
     | 
| 
      
 1647 
     | 
    
         
            +
            ### 2.12.1 / 2012-12-01
         
     | 
| 
      
 1648 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
         
     | 
| 
      
 1649 
     | 
    
         
            +
             
     | 
| 
      
 1650 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1651 
     | 
    
         
            +
             
     | 
| 
      
 1652 
     | 
    
         
            +
            * Specs are run even if another at\_exit hook calls `exit`. This allows
         
     | 
| 
      
 1653 
     | 
    
         
            +
              Test::Unit and RSpec to run together. (Suraj N. Kurapati)
         
     | 
| 
      
 1654 
     | 
    
         
            +
            * Fix full doc string concatenation so that it handles the case of a
         
     | 
| 
      
 1655 
     | 
    
         
            +
              method string (e.g. "#foo") being nested under a context string
         
     | 
| 
      
 1656 
     | 
    
         
            +
              (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo"
         
     | 
| 
      
 1657 
     | 
    
         
            +
              rather than "when it is tuesday#foo". (Myron Marston)
         
     | 
| 
      
 1658 
     | 
    
         
            +
            * Restore public API I unintentionally broke in 2.12.0:
         
     | 
| 
      
 1659 
     | 
    
         
            +
              `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)`
         
     | 
| 
      
 1660 
     | 
    
         
            +
              (Myron Marston).
         
     | 
| 
      
 1661 
     | 
    
         
            +
             
     | 
| 
      
 1662 
     | 
    
         
            +
            ### 2.12.0 / 2012-11-12
         
     | 
| 
      
 1663 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
         
     | 
| 
      
 1664 
     | 
    
         
            +
             
     | 
| 
      
 1665 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1666 
     | 
    
         
            +
             
     | 
| 
      
 1667 
     | 
    
         
            +
            * Add support for custom ordering strategies for groups and examples.
         
     | 
| 
      
 1668 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 1669 
     | 
    
         
            +
            * JSON Formatter (Alex Chaffee)
         
     | 
| 
      
 1670 
     | 
    
         
            +
            * Refactor rake task internals (Sam Phippen)
         
     | 
| 
      
 1671 
     | 
    
         
            +
            * Refactor HtmlFormatter (Pete Hodgson)
         
     | 
| 
      
 1672 
     | 
    
         
            +
            * Autotest supports a path to Ruby that contains spaces (dsisnero)
         
     | 
| 
      
 1673 
     | 
    
         
            +
            * Provide a helpful warning when a shared example group is redefined.
         
     | 
| 
      
 1674 
     | 
    
         
            +
              (Mark Burns).
         
     | 
| 
      
 1675 
     | 
    
         
            +
            * `--default_path` can be specified as `--default-line`. `--line_number` can be
         
     | 
| 
      
 1676 
     | 
    
         
            +
              specified as `--line-number`. Hyphens are more idiomatic command line argument
         
     | 
| 
      
 1677 
     | 
    
         
            +
              separators (Sam Phippen).
         
     | 
| 
      
 1678 
     | 
    
         
            +
            * A more useful error message is shown when an invalid command line option is
         
     | 
| 
      
 1679 
     | 
    
         
            +
              used (Jordi Polo).
         
     | 
| 
      
 1680 
     | 
    
         
            +
            * Add `format_docstrings { |str| }` config option. It can be used to
         
     | 
| 
      
 1681 
     | 
    
         
            +
              apply formatting rules to example group and example docstrings.
         
     | 
| 
      
 1682 
     | 
    
         
            +
              (Alex Tan)
         
     | 
| 
      
 1683 
     | 
    
         
            +
            * Add support for an `.rspec-local` options file. This is intended to
         
     | 
| 
      
 1684 
     | 
    
         
            +
              allow individual developers to set options in a git-ignored file that
         
     | 
| 
      
 1685 
     | 
    
         
            +
              override the common project options in `.rspec`. (Sam Phippen)
         
     | 
| 
      
 1686 
     | 
    
         
            +
            * Support for mocha 0.13.0. (Andy Lindeman)
         
     | 
| 
      
 1687 
     | 
    
         
            +
             
     | 
| 
      
 1688 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1689 
     | 
    
         
            +
             
     | 
| 
      
 1690 
     | 
    
         
            +
            * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that
         
     | 
| 
      
 1691 
     | 
    
         
            +
              RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron
         
     | 
| 
      
 1692 
     | 
    
         
            +
              Marston)
         
     | 
| 
      
 1693 
     | 
    
         
            +
            * Limit monkey patching of shared example/context declaration methods
         
     | 
| 
      
 1694 
     | 
    
         
            +
              (`shared_examples_for`, etc.) to just the objects that need it rather than
         
     | 
| 
      
 1695 
     | 
    
         
            +
              every object in the system (Myron Marston).
         
     | 
| 
      
 1696 
     | 
    
         
            +
            * Fix Metadata#fetch to support computed values (Sam Goldman).
         
     | 
| 
      
 1697 
     | 
    
         
            +
            * Named subject can now be referred to from within subject block in a nested
         
     | 
| 
      
 1698 
     | 
    
         
            +
              group (tomykaira).
         
     | 
| 
      
 1699 
     | 
    
         
            +
            * Fix `fail_fast` so that it properly exits when an error occurs in a
         
     | 
| 
      
 1700 
     | 
    
         
            +
              `before(:all) hook` (Bradley Schaefer).
         
     | 
| 
      
 1701 
     | 
    
         
            +
            * Make the order spec files are loaded consistent, regardless of the
         
     | 
| 
      
 1702 
     | 
    
         
            +
              order of the files returned by the OS or the order passed at
         
     | 
| 
      
 1703 
     | 
    
         
            +
              the command line (Jo Liss and Sam Phippen).
         
     | 
| 
      
 1704 
     | 
    
         
            +
            * Ensure instance variables from `before(:all)` are always exposed
         
     | 
| 
      
 1705 
     | 
    
         
            +
              from `after(:all)`, even if an error occurs in `before(:all)`
         
     | 
| 
      
 1706 
     | 
    
         
            +
              (Sam Phippen).
         
     | 
| 
      
 1707 
     | 
    
         
            +
            * `rspec --init` no longer generates an incorrect warning about `--configure`
         
     | 
| 
      
 1708 
     | 
    
         
            +
              being deprecated (Sam Phippen).
         
     | 
| 
      
 1709 
     | 
    
         
            +
            * Fix pluralization of `1 seconds` (Odin Dutton)
         
     | 
| 
      
 1710 
     | 
    
         
            +
            * Fix ANSICON url (Jarmo Pertman)
         
     | 
| 
      
 1711 
     | 
    
         
            +
            * Use dup of Time so reporting isn't clobbered by examples that modify Time
         
     | 
| 
      
 1712 
     | 
    
         
            +
              without properly restoring it. (David Chelimsky)
         
     | 
| 
      
 1713 
     | 
    
         
            +
             
     | 
| 
      
 1714 
     | 
    
         
            +
            Deprecations
         
     | 
| 
      
 1715 
     | 
    
         
            +
             
     | 
| 
      
 1716 
     | 
    
         
            +
            * `share_as` is no longer needed. `shared_context` and/or
         
     | 
| 
      
 1717 
     | 
    
         
            +
              `RSpec::SharedContext` provide better mechanisms (Sam Phippen).
         
     | 
| 
      
 1718 
     | 
    
         
            +
            * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`).
         
     | 
| 
      
 1719 
     | 
    
         
            +
             
     | 
| 
      
 1720 
     | 
    
         
            +
             
     | 
| 
      
 1721 
     | 
    
         
            +
            ### 2.11.1 / 2012-07-18
         
     | 
| 
      
 1722 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
         
     | 
| 
      
 1723 
     | 
    
         
            +
             
     | 
| 
      
 1724 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1725 
     | 
    
         
            +
             
     | 
| 
      
 1726 
     | 
    
         
            +
            * Fix the way we autoload RSpec::Matchers so that custom matchers can be
         
     | 
| 
      
 1727 
     | 
    
         
            +
              defined before rspec-core has been configured to definitely use
         
     | 
| 
      
 1728 
     | 
    
         
            +
              rspec-expectations. (Myron Marston)
         
     | 
| 
      
 1729 
     | 
    
         
            +
            * Fix typo in --help message printed for -e option. (Jo Liss)
         
     | 
| 
      
 1730 
     | 
    
         
            +
            * Fix ruby warnings. (Myron Marston)
         
     | 
| 
      
 1731 
     | 
    
         
            +
            * Ignore mock expectation failures when the example has already failed.
         
     | 
| 
      
 1732 
     | 
    
         
            +
              Mock expectation failures have always been ignored in this situation,
         
     | 
| 
      
 1733 
     | 
    
         
            +
              but due to my changes in 27059bf1 it was printing a confusing message.
         
     | 
| 
      
 1734 
     | 
    
         
            +
              (Myron Marston).
         
     | 
| 
      
 1735 
     | 
    
         
            +
             
     | 
| 
      
 1736 
     | 
    
         
            +
            ### 2.11.0 / 2012-07-07
         
     | 
| 
      
 1737 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
         
     | 
| 
      
 1738 
     | 
    
         
            +
             
     | 
| 
      
 1739 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1740 
     | 
    
         
            +
             
     | 
| 
      
 1741 
     | 
    
         
            +
            * Support multiple `--example` options. (Daniel Doubrovkine @dblock)
         
     | 
| 
      
 1742 
     | 
    
         
            +
            * Named subject e.g. `subject(:article) { Article.new }`
         
     | 
| 
      
 1743 
     | 
    
         
            +
                * see [http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/](http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/)
         
     | 
| 
      
 1744 
     | 
    
         
            +
                  for background.
         
     | 
| 
      
 1745 
     | 
    
         
            +
                * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost
         
     | 
| 
      
 1746 
     | 
    
         
            +
                  suggesting it.
         
     | 
| 
      
 1747 
     | 
    
         
            +
            * `config.mock_with` and `config.expect_with` yield custom config object to a
         
     | 
| 
      
 1748 
     | 
    
         
            +
              block if given
         
     | 
| 
      
 1749 
     | 
    
         
            +
                * aids decoupling from rspec-core's configuation
         
     | 
| 
      
 1750 
     | 
    
         
            +
            * `include_context` and `include_examples` support a block, which gets eval'd
         
     | 
| 
      
 1751 
     | 
    
         
            +
              in the current context (vs the nested context generated by `it_behaves_like`).
         
     | 
| 
      
 1752 
     | 
    
         
            +
            * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec
         
     | 
| 
      
 1753 
     | 
    
         
            +
              --init`.
         
     | 
| 
      
 1754 
     | 
    
         
            +
            * Delay the loading of DRb (Myron Marston).
         
     | 
| 
      
 1755 
     | 
    
         
            +
            * Limit monkey patching of `describe` onto just the objects that need it rather
         
     | 
| 
      
 1756 
     | 
    
         
            +
              than every object in the system (Myron Marston).
         
     | 
| 
      
 1757 
     | 
    
         
            +
             
     | 
| 
      
 1758 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1759 
     | 
    
         
            +
             
     | 
| 
      
 1760 
     | 
    
         
            +
            * Support alternative path separators. For example, on Windows, you can now do
         
     | 
| 
      
 1761 
     | 
    
         
            +
              this: `rspec spec\subdir`. (Jarmo Pertman @jarmo)
         
     | 
| 
      
 1762 
     | 
    
         
            +
            * When an example raises an error and an after or around hook does as
         
     | 
| 
      
 1763 
     | 
    
         
            +
              well, print out the hook error. Previously, the error was silenced and
         
     | 
| 
      
 1764 
     | 
    
         
            +
              the user got no feedback about what happened. (Myron Marston)
         
     | 
| 
      
 1765 
     | 
    
         
            +
            * `--require` and `-I` are merged among different configuration sources (Andy
         
     | 
| 
      
 1766 
     | 
    
         
            +
              Lindeman)
         
     | 
| 
      
 1767 
     | 
    
         
            +
            * Delegate to mocha methods instead of aliasing them in mocha adapter.
         
     | 
| 
      
 1768 
     | 
    
         
            +
             
     | 
| 
      
 1769 
     | 
    
         
            +
            ### 2.10.1 / 2012-05-19
         
     | 
| 
      
 1770 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
         
     | 
| 
      
 1771 
     | 
    
         
            +
             
     | 
| 
      
 1772 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1773 
     | 
    
         
            +
             
     | 
| 
      
 1774 
     | 
    
         
            +
            * `RSpec.reset` properly reinits configuration and world
         
     | 
| 
      
 1775 
     | 
    
         
            +
            * Call `to_s` before `split` on exception messages that might not always be
         
     | 
| 
      
 1776 
     | 
    
         
            +
              Strings (slyphon)
         
     | 
| 
      
 1777 
     | 
    
         
            +
             
     | 
| 
      
 1778 
     | 
    
         
            +
            ### 2.10.0 / 2012-05-03
         
     | 
| 
      
 1779 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
         
     | 
| 
      
 1780 
     | 
    
         
            +
             
     | 
| 
      
 1781 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1782 
     | 
    
         
            +
             
     | 
| 
      
 1783 
     | 
    
         
            +
            * Add `prepend_before` and `append_after` hooks (preethiramdev)
         
     | 
| 
      
 1784 
     | 
    
         
            +
                * intended for extension libs
         
     | 
| 
      
 1785 
     | 
    
         
            +
                * restores rspec-1 behavior
         
     | 
| 
      
 1786 
     | 
    
         
            +
            * Reporting of profiled examples (moro)
         
     | 
| 
      
 1787 
     | 
    
         
            +
                * Report the total amount of time taken for the top slowest examples.
         
     | 
| 
      
 1788 
     | 
    
         
            +
                * Report what percentage the slowest examples took from the total runtime.
         
     | 
| 
      
 1789 
     | 
    
         
            +
             
     | 
| 
      
 1790 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1791 
     | 
    
         
            +
             
     | 
| 
      
 1792 
     | 
    
         
            +
            * Properly parse `SPEC_OPTS` options.
         
     | 
| 
      
 1793 
     | 
    
         
            +
            * `example.description` returns the location of the example if there is no
         
     | 
| 
      
 1794 
     | 
    
         
            +
              explicit description or matcher-generated description.
         
     | 
| 
      
 1795 
     | 
    
         
            +
            * RDoc fixes (Grzegorz Świrski)
         
     | 
| 
      
 1796 
     | 
    
         
            +
            * Do not modify example ancestry when dumping errors (Michael Grosser)
         
     | 
| 
      
 1797 
     | 
    
         
            +
             
     | 
| 
      
 1798 
     | 
    
         
            +
            ### 2.9.0 / 2012-03-17
         
     | 
| 
      
 1799 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
         
     | 
| 
      
 1800 
     | 
    
         
            +
             
     | 
| 
      
 1801 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1802 
     | 
    
         
            +
             
     | 
| 
      
 1803 
     | 
    
         
            +
            * Support for "X minutes X seconds" spec run duration in formatter. (uzzz)
         
     | 
| 
      
 1804 
     | 
    
         
            +
            * Strip whitespace from group and example names in doc formatter.
         
     | 
| 
      
 1805 
     | 
    
         
            +
            * Removed spork-0.9 shim. If you're using spork-0.8.x, you'll need to upgrade
         
     | 
| 
      
 1806 
     | 
    
         
            +
              to 0.9.0.
         
     | 
| 
      
 1807 
     | 
    
         
            +
             
     | 
| 
      
 1808 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1809 
     | 
    
         
            +
             
     | 
| 
      
 1810 
     | 
    
         
            +
            * Restore `--full_backtrace` option
         
     | 
| 
      
 1811 
     | 
    
         
            +
            * Ensure that values passed to `config.filter_run` are respected when running
         
     | 
| 
      
 1812 
     | 
    
         
            +
              over DRb (using spork).
         
     | 
| 
      
 1813 
     | 
    
         
            +
            * Ensure shared example groups are reset after a run (as example groups are).
         
     | 
| 
      
 1814 
     | 
    
         
            +
            * Remove `rescue false` from calls to filters represented as Procs
         
     | 
| 
      
 1815 
     | 
    
         
            +
            * Ensure `described_class` gets the closest constant (pyromaniac)
         
     | 
| 
      
 1816 
     | 
    
         
            +
            * In "autorun", don't run the specs in the `at_exit` hook if there was an
         
     | 
| 
      
 1817 
     | 
    
         
            +
              exception (most likely due to a SyntaxError). (sunaku)
         
     | 
| 
      
 1818 
     | 
    
         
            +
            * Don't extend groups with modules already used to extend ancestor groups.
         
     | 
| 
      
 1819 
     | 
    
         
            +
            * `its` correctly memoizes nil or false values (Yamada Masaki)
         
     | 
| 
      
 1820 
     | 
    
         
            +
             
     | 
| 
      
 1821 
     | 
    
         
            +
            ### 2.8.0 / 2012-01-04
         
     | 
| 
      
 1822 
     | 
    
         
            +
             
     | 
| 
      
 1823 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
         
     | 
| 
      
 1824 
     | 
    
         
            +
             
     | 
| 
      
 1825 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1826 
     | 
    
         
            +
             
     | 
| 
      
 1827 
     | 
    
         
            +
            * For metadata filtering, restore passing the entire array to the proc, rather
         
     | 
| 
      
 1828 
     | 
    
         
            +
              than each item in the array (weidenfreak)
         
     | 
| 
      
 1829 
     | 
    
         
            +
            * Ensure each spec file is loaded only once
         
     | 
| 
      
 1830 
     | 
    
         
            +
                * Fixes a bug that caused all the examples in a file to be run when
         
     | 
| 
      
 1831 
     | 
    
         
            +
                  referenced twice with line numbers in a command, e.g.
         
     | 
| 
      
 1832 
     | 
    
         
            +
                    * `rspec path/to/file:37 path/to/file:42`
         
     | 
| 
      
 1833 
     | 
    
         
            +
             
     | 
| 
      
 1834 
     | 
    
         
            +
            ### 2.8.0.rc2 / 2011-12-19
         
     | 
| 
      
 1835 
     | 
    
         
            +
             
     | 
| 
      
 1836 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
         
     | 
| 
      
 1837 
     | 
    
         
            +
             
     | 
| 
      
 1838 
     | 
    
         
            +
            Enhancments
         
     | 
| 
      
 1839 
     | 
    
         
            +
             
     | 
| 
      
 1840 
     | 
    
         
            +
            * new `--init` command (Peter Schröder)
         
     | 
| 
      
 1841 
     | 
    
         
            +
                * generates `spec/spec_helper.rb`
         
     | 
| 
      
 1842 
     | 
    
         
            +
                * deletes obsolete files (on confirmation)
         
     | 
| 
      
 1843 
     | 
    
         
            +
                * merged with and deprecates `--configure` command, which generated
         
     | 
| 
      
 1844 
     | 
    
         
            +
                  `.rspec`
         
     | 
| 
      
 1845 
     | 
    
         
            +
            * use `require_relative` when available (Ian Leitch)
         
     | 
| 
      
 1846 
     | 
    
         
            +
            * `include_context` and `include_examples` accept params (Calvin Bascom)
         
     | 
| 
      
 1847 
     | 
    
         
            +
            * print the time for every example in the html formatter (Richie Vos)
         
     | 
| 
      
 1848 
     | 
    
         
            +
            * several tasty refactoring niblets (Sasha)
         
     | 
| 
      
 1849 
     | 
    
         
            +
            * `it "does something", :x => [:foo,'bar',/baz/] (Ivan Neverov)
         
     | 
| 
      
 1850 
     | 
    
         
            +
                * supports matching n command line tag values with an example or group
         
     | 
| 
      
 1851 
     | 
    
         
            +
             
     | 
| 
      
 1852 
     | 
    
         
            +
            ### 2.8.0.rc1 / 2011-11-06
         
     | 
| 
      
 1853 
     | 
    
         
            +
             
     | 
| 
      
 1854 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
         
     | 
| 
      
 1855 
     | 
    
         
            +
             
     | 
| 
      
 1856 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1857 
     | 
    
         
            +
             
     | 
| 
      
 1858 
     | 
    
         
            +
            * `--order` (Justin Ko)
         
     | 
| 
      
 1859 
     | 
    
         
            +
                * run examples in random order: `--order rand`
         
     | 
| 
      
 1860 
     | 
    
         
            +
                * specify the seed: `--order rand:123`
         
     | 
| 
      
 1861 
     | 
    
         
            +
            * `--seed SEED`
         
     | 
| 
      
 1862 
     | 
    
         
            +
                * equivalent of `--order rand:SEED`
         
     | 
| 
      
 1863 
     | 
    
         
            +
            * SharedContext supports `let` (David Chelimsky)
         
     | 
| 
      
 1864 
     | 
    
         
            +
            * Filter improvements (David Chelimsky)
         
     | 
| 
      
 1865 
     | 
    
         
            +
                * override opposing tags from the command line
         
     | 
| 
      
 1866 
     | 
    
         
            +
                * override RSpec.configure tags from the command line
         
     | 
| 
      
 1867 
     | 
    
         
            +
                * `--line_number 37` overrides all other filters
         
     | 
| 
      
 1868 
     | 
    
         
            +
                * `path/to/file.rb:37` overrides all other filters
         
     | 
| 
      
 1869 
     | 
    
         
            +
                * refactor: consolidate filter management in a FilterManger object
         
     | 
| 
      
 1870 
     | 
    
         
            +
            * Eliminate Ruby warnings (Matijs van Zuijlen)
         
     | 
| 
      
 1871 
     | 
    
         
            +
            * Make reporter.report an API (David Chelimsky)
         
     | 
| 
      
 1872 
     | 
    
         
            +
                * supports extension tools like interative_rspec
         
     | 
| 
      
 1873 
     | 
    
         
            +
             
     | 
| 
      
 1874 
     | 
    
         
            +
            Changes
         
     | 
| 
      
 1875 
     | 
    
         
            +
             
     | 
| 
      
 1876 
     | 
    
         
            +
            * change `config.color_enabled` (getter/setter/predicate) to `color` to align
         
     | 
| 
      
 1877 
     | 
    
         
            +
              with `--[no]-color` CLI option.
         
     | 
| 
      
 1878 
     | 
    
         
            +
                * `color_enabled` is still supported for now, but will likley be deprecated
         
     | 
| 
      
 1879 
     | 
    
         
            +
                  in a 2.x release so we can remove it in 3.0.
         
     | 
| 
      
 1880 
     | 
    
         
            +
             
     | 
| 
      
 1881 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1882 
     | 
    
         
            +
             
     | 
| 
      
 1883 
     | 
    
         
            +
            * Make sure the `bar` in `--tag foo:bar` makes it to DRb (Aaron Gibralter)
         
     | 
| 
      
 1884 
     | 
    
         
            +
            * Fix bug where full descriptions of groups nested 3 deep  were repeated.
         
     | 
| 
      
 1885 
     | 
    
         
            +
            * Restore report of time to run to start after files are loaded.
         
     | 
| 
      
 1886 
     | 
    
         
            +
                * fixes bug where run times were cumalitive in spork
         
     | 
| 
      
 1887 
     | 
    
         
            +
                * fixes compatibility with time-series metrics
         
     | 
| 
      
 1888 
     | 
    
         
            +
            * Don't error out when `config.mock_with` or `expect_with` is re-specifying the
         
     | 
| 
      
 1889 
     | 
    
         
            +
              current config (Myron Marston)
         
     | 
| 
      
 1890 
     | 
    
         
            +
             
     | 
| 
      
 1891 
     | 
    
         
            +
            * Deprecations
         
     | 
| 
      
 1892 
     | 
    
         
            +
                * :alias option on `configuration.add_setting`. Use `:alias_with` on the
         
     | 
| 
      
 1893 
     | 
    
         
            +
                  original setting declaration instead.
         
     | 
| 
      
 1894 
     | 
    
         
            +
             
     | 
| 
      
 1895 
     | 
    
         
            +
            ### 2.7.1 / 2011-10-20
         
     | 
| 
      
 1896 
     | 
    
         
            +
             
     | 
| 
      
 1897 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
         
     | 
| 
      
 1898 
     | 
    
         
            +
             
     | 
| 
      
 1899 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1900 
     | 
    
         
            +
             
     | 
| 
      
 1901 
     | 
    
         
            +
            * tell autotest the correct place to find the rspec executable
         
     | 
| 
      
 1902 
     | 
    
         
            +
             
     | 
| 
      
 1903 
     | 
    
         
            +
            ### 2.7.0 / 2011-10-16
         
     | 
| 
      
 1904 
     | 
    
         
            +
             
     | 
| 
      
 1905 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
         
     | 
| 
      
 1906 
     | 
    
         
            +
             
     | 
| 
      
 1907 
     | 
    
         
            +
            NOTE: RSpec's release policy dictates that there should not be any backward
         
     | 
| 
      
 1908 
     | 
    
         
            +
            incompatible changes in minor releases, but we're making an exception to
         
     | 
| 
      
 1909 
     | 
    
         
            +
            release a change to how RSpec interacts with other command line tools.
         
     | 
| 
      
 1910 
     | 
    
         
            +
             
     | 
| 
      
 1911 
     | 
    
         
            +
            As of 2.7.0, you must explicity `require "rspec/autorun"` unless you use the
         
     | 
| 
      
 1912 
     | 
    
         
            +
            `rspec` command (which already does this for you).
         
     | 
| 
      
 1913 
     | 
    
         
            +
             
     | 
| 
      
 1914 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1915 
     | 
    
         
            +
             
     | 
| 
      
 1916 
     | 
    
         
            +
            * Add `example.exception` (David Chelimsky)
         
     | 
| 
      
 1917 
     | 
    
         
            +
            * `--default_path` command line option (Justin Ko)
         
     | 
| 
      
 1918 
     | 
    
         
            +
            * support multiple `--line_number` options (David J. Hamilton)
         
     | 
| 
      
 1919 
     | 
    
         
            +
                * also supports `path/to/file.rb:5:9` (runs examples on lines 5 and 9)
         
     | 
| 
      
 1920 
     | 
    
         
            +
            * Allow classes/modules to be used as shared example group identifiers (Arthur
         
     | 
| 
      
 1921 
     | 
    
         
            +
              Gunn)
         
     | 
| 
      
 1922 
     | 
    
         
            +
            * Friendly error message when shared context cannot be found (Sławosz
         
     | 
| 
      
 1923 
     | 
    
         
            +
              Sławiński)
         
     | 
| 
      
 1924 
     | 
    
         
            +
            * Clear formatters when resetting config (John Bintz)
         
     | 
| 
      
 1925 
     | 
    
         
            +
            * Add `xspecify` and xexample as temp-pending methods (David Chelimsky)
         
     | 
| 
      
 1926 
     | 
    
         
            +
            * Add `--no-drb` option (Iain Hecker)
         
     | 
| 
      
 1927 
     | 
    
         
            +
            * Provide more accurate run time by registering start time before code is
         
     | 
| 
      
 1928 
     | 
    
         
            +
              loaded (David Chelimsky)
         
     | 
| 
      
 1929 
     | 
    
         
            +
                * reverted in 2.8.0
         
     | 
| 
      
 1930 
     | 
    
         
            +
            * Rake task default pattern finds specs in symlinked dirs (Kelly Felkins)
         
     | 
| 
      
 1931 
     | 
    
         
            +
            * Rake task no longer does anything to invoke bundler since Bundler already
         
     | 
| 
      
 1932 
     | 
    
         
            +
              handles it for us. Thanks to Andre Arko for the tip.
         
     | 
| 
      
 1933 
     | 
    
         
            +
            * Add `--failure-exit-code` option (Chris Griego)
         
     | 
| 
      
 1934 
     | 
    
         
            +
             
     | 
| 
      
 1935 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1936 
     | 
    
         
            +
             
     | 
| 
      
 1937 
     | 
    
         
            +
            * Include `Rake::DSL` to remove deprecation warnings in Rake > 0.8.7 (Pivotal
         
     | 
| 
      
 1938 
     | 
    
         
            +
              Casebook)
         
     | 
| 
      
 1939 
     | 
    
         
            +
            * Only eval `let` block once even if it returns `nil` (Adam Meehan)
         
     | 
| 
      
 1940 
     | 
    
         
            +
            * Fix `--pattern` option (wasn't being recognized) (David Chelimsky)
         
     | 
| 
      
 1941 
     | 
    
         
            +
            * Only implicitly `require "rspec/autorun"` with the `rspec` command (David
         
     | 
| 
      
 1942 
     | 
    
         
            +
              Chelimsky)
         
     | 
| 
      
 1943 
     | 
    
         
            +
            * Ensure that rspec's `at_exit` defines the exit code (Daniel Doubrovkine)
         
     | 
| 
      
 1944 
     | 
    
         
            +
            * Show the correct snippet in the HTML and TextMate formatters (Brian Faherty)
         
     | 
| 
      
 1945 
     | 
    
         
            +
             
     | 
| 
      
 1946 
     | 
    
         
            +
            ### 2.6.4 / 2011-06-06
         
     | 
| 
      
 1947 
     | 
    
         
            +
             
     | 
| 
      
 1948 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
         
     | 
| 
      
 1949 
     | 
    
         
            +
             
     | 
| 
      
 1950 
     | 
    
         
            +
            NOTE: RSpec's release policy dictates that there should not be new
         
     | 
| 
      
 1951 
     | 
    
         
            +
            functionality in patch releases, but this minor enhancement slipped in by
         
     | 
| 
      
 1952 
     | 
    
         
            +
            accident.  As it doesn't add a new API, we decided to leave it in rather than
         
     | 
| 
      
 1953 
     | 
    
         
            +
            roll back this release.
         
     | 
| 
      
 1954 
     | 
    
         
            +
             
     | 
| 
      
 1955 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 1956 
     | 
    
         
            +
             
     | 
| 
      
 1957 
     | 
    
         
            +
            * Add summary of commands to run individual failed examples.
         
     | 
| 
      
 1958 
     | 
    
         
            +
             
     | 
| 
      
 1959 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1960 
     | 
    
         
            +
             
     | 
| 
      
 1961 
     | 
    
         
            +
            * Support exclusion filters in DRb. (Yann Lugrin)
         
     | 
| 
      
 1962 
     | 
    
         
            +
            * Fix --example escaping when run over DRb. (Elliot Winkler)
         
     | 
| 
      
 1963 
     | 
    
         
            +
            * Use standard ANSI codes for color formatting so colors work in a wider set of
         
     | 
| 
      
 1964 
     | 
    
         
            +
              color schemes.
         
     | 
| 
      
 1965 
     | 
    
         
            +
             
     | 
| 
      
 1966 
     | 
    
         
            +
            ### 2.6.3 / 2011-05-24
         
     | 
| 
      
 1967 
     | 
    
         
            +
             
     | 
| 
      
 1968 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
         
     | 
| 
      
 1969 
     | 
    
         
            +
             
     | 
| 
      
 1970 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1971 
     | 
    
         
            +
             
     | 
| 
      
 1972 
     | 
    
         
            +
            * Explicitly convert exit code to integer, avoiding TypeError when return
         
     | 
| 
      
 1973 
     | 
    
         
            +
              value of run is IO object proxied by `DRb::DRbObject` (Julian Scheid)
         
     | 
| 
      
 1974 
     | 
    
         
            +
            * Clarify behavior of `--example` command line option
         
     | 
| 
      
 1975 
     | 
    
         
            +
            * Build using a rubygems-1.6.2 to avoid downstream yaml parsing error
         
     | 
| 
      
 1976 
     | 
    
         
            +
             
     | 
| 
      
 1977 
     | 
    
         
            +
            ### 2.6.2 / 2011-05-21
         
     | 
| 
      
 1978 
     | 
    
         
            +
             
     | 
| 
      
 1979 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
         
     | 
| 
      
 1980 
     | 
    
         
            +
             
     | 
| 
      
 1981 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1982 
     | 
    
         
            +
             
     | 
| 
      
 1983 
     | 
    
         
            +
            * Warn rather than raise when HOME env var is not defined
         
     | 
| 
      
 1984 
     | 
    
         
            +
            * Properly merge command-line exclusions with default :if and :unless (joshcooper)
         
     | 
| 
      
 1985 
     | 
    
         
            +
             
     | 
| 
      
 1986 
     | 
    
         
            +
            ### 2.6.1 / 2011-05-19
         
     | 
| 
      
 1987 
     | 
    
         
            +
             
     | 
| 
      
 1988 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
         
     | 
| 
      
 1989 
     | 
    
         
            +
             
     | 
| 
      
 1990 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 1991 
     | 
    
         
            +
             
     | 
| 
      
 1992 
     | 
    
         
            +
            * Don't extend nil when filters are nil
         
     | 
| 
      
 1993 
     | 
    
         
            +
            * `require 'rspec/autorun'` when running rcov.
         
     | 
| 
      
 1994 
     | 
    
         
            +
             
     | 
| 
      
 1995 
     | 
    
         
            +
            ### 2.6.0 / 2011-05-12
         
     | 
| 
      
 1996 
     | 
    
         
            +
             
     | 
| 
      
 1997 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
         
     | 
| 
      
 1998 
     | 
    
         
            +
             
     | 
| 
      
 1999 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2000 
     | 
    
         
            +
             
     | 
| 
      
 2001 
     | 
    
         
            +
            * `shared_context` (Damian Nurzynski)
         
     | 
| 
      
 2002 
     | 
    
         
            +
                * extend groups matching specific metadata with:
         
     | 
| 
      
 2003 
     | 
    
         
            +
                    * method definitions
         
     | 
| 
      
 2004 
     | 
    
         
            +
                    * subject declarations
         
     | 
| 
      
 2005 
     | 
    
         
            +
                    * let/let! declarations
         
     | 
| 
      
 2006 
     | 
    
         
            +
                    * etc (anything you can do in a group)
         
     | 
| 
      
 2007 
     | 
    
         
            +
            * `its([:key])` works for any subject with #[]. (Peter Jaros)
         
     | 
| 
      
 2008 
     | 
    
         
            +
            * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
         
     | 
| 
      
 2009 
     | 
    
         
            +
            * Print a deprecation warning when you configure RSpec after defining an
         
     | 
| 
      
 2010 
     | 
    
         
            +
              example.  All configuration should happen before any examples are defined.
         
     | 
| 
      
 2011 
     | 
    
         
            +
              (Myron Marston)
         
     | 
| 
      
 2012 
     | 
    
         
            +
            * Pass the exit status of a DRb run to the invoking process. This causes specs
         
     | 
| 
      
 2013 
     | 
    
         
            +
              run via DRb to not just return true or false. (Ilkka Laukkanen)
         
     | 
| 
      
 2014 
     | 
    
         
            +
            * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
         
     | 
| 
      
 2015 
     | 
    
         
            +
            * Report excluded filters in runner output (tip from andyl)
         
     | 
| 
      
 2016 
     | 
    
         
            +
            * Clean up messages for filters/tags.
         
     | 
| 
      
 2017 
     | 
    
         
            +
            * Restore --pattern/-P command line option from rspec-1
         
     | 
| 
      
 2018 
     | 
    
         
            +
            * Support false as well as true in config.full_backtrace= (Andreas Tolf
         
     | 
| 
      
 2019 
     | 
    
         
            +
              Tolfsen)
         
     | 
| 
      
 2020 
     | 
    
         
            +
             
     | 
| 
      
 2021 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2022 
     | 
    
         
            +
             
     | 
| 
      
 2023 
     | 
    
         
            +
            * Don't stumble over an exception without a message (Hans Hasselberg)
         
     | 
| 
      
 2024 
     | 
    
         
            +
            * Remove non-ascii characters from comments that were choking rcov (Geoffrey
         
     | 
| 
      
 2025 
     | 
    
         
            +
              Byers)
         
     | 
| 
      
 2026 
     | 
    
         
            +
            * Fixed backtrace so it doesn't include lines from before the autorun at_exit
         
     | 
| 
      
 2027 
     | 
    
         
            +
              hook (Myron Marston)
         
     | 
| 
      
 2028 
     | 
    
         
            +
            * Include RSpec::Matchers when first example group is defined, rather than just
         
     | 
| 
      
 2029 
     | 
    
         
            +
              before running the examples.  This works around an obscure bug in ruby 1.9
         
     | 
| 
      
 2030 
     | 
    
         
            +
              that can cause infinite recursion. (Myron Marston)
         
     | 
| 
      
 2031 
     | 
    
         
            +
            * Don't send `example_group_[started|finished]` to formatters for empty groups.
         
     | 
| 
      
 2032 
     | 
    
         
            +
            * Get specs passing on jruby (Sidu Ponnappa)
         
     | 
| 
      
 2033 
     | 
    
         
            +
            * Fix bug where mixing nested groups and outer-level examples gave
         
     | 
| 
      
 2034 
     | 
    
         
            +
              unpredictable :line_number behavior (Artur Małecki)
         
     | 
| 
      
 2035 
     | 
    
         
            +
            * Regexp.escape the argument to --example (tip from Elliot Winkler)
         
     | 
| 
      
 2036 
     | 
    
         
            +
            * Correctly pass/fail pending block with message expectations
         
     | 
| 
      
 2037 
     | 
    
         
            +
            * CommandLine returns exit status (0/1) instead of true/false
         
     | 
| 
      
 2038 
     | 
    
         
            +
            * Create path to formatter output file if it doesn't exist (marekj).
         
     | 
| 
      
 2039 
     | 
    
         
            +
             
     | 
| 
      
 2040 
     | 
    
         
            +
             
     | 
| 
      
 2041 
     | 
    
         
            +
            ### 2.5.1 / 2011-02-06
         
     | 
| 
      
 2042 
     | 
    
         
            +
             
     | 
| 
      
 2043 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
         
     | 
| 
      
 2044 
     | 
    
         
            +
             
     | 
| 
      
 2045 
     | 
    
         
            +
            NOTE: this release breaks compatibility with rspec/autotest/bundler
         
     | 
| 
      
 2046 
     | 
    
         
            +
            integration, but does so in order to greatly simplify it.
         
     | 
| 
      
 2047 
     | 
    
         
            +
             
     | 
| 
      
 2048 
     | 
    
         
            +
            With this release, if you want the generated autotest command to include
         
     | 
| 
      
 2049 
     | 
    
         
            +
            'bundle exec', require Autotest's bundler plugin in a .autotest file in the
         
     | 
| 
      
 2050 
     | 
    
         
            +
            project's root directory or in your home directory:
         
     | 
| 
      
 2051 
     | 
    
         
            +
             
     | 
| 
      
 2052 
     | 
    
         
            +
                require "autotest/bundler"
         
     | 
| 
      
 2053 
     | 
    
         
            +
             
     | 
| 
      
 2054 
     | 
    
         
            +
            Now you can just type 'autotest' on the command line and it will work as you expect.
         
     | 
| 
      
 2055 
     | 
    
         
            +
             
     | 
| 
      
 2056 
     | 
    
         
            +
            If you don't want 'bundle exec', there is nothing you have to do.
         
     | 
| 
      
 2057 
     | 
    
         
            +
             
     | 
| 
      
 2058 
     | 
    
         
            +
            ### 2.5.0 / 2011-02-05
         
     | 
| 
      
 2059 
     | 
    
         
            +
             
     | 
| 
      
 2060 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
         
     | 
| 
      
 2061 
     | 
    
         
            +
             
     | 
| 
      
 2062 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2063 
     | 
    
         
            +
             
     | 
| 
      
 2064 
     | 
    
         
            +
            * Autotest::Rspec2 parses command line args passed to autotest after '--'
         
     | 
| 
      
 2065 
     | 
    
         
            +
            * --skip-bundler option for autotest command
         
     | 
| 
      
 2066 
     | 
    
         
            +
            * Autotest regexp fixes (Jon Rowe)
         
     | 
| 
      
 2067 
     | 
    
         
            +
            * Add filters to html and textmate formatters (Daniel Quimper)
         
     | 
| 
      
 2068 
     | 
    
         
            +
            * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
         
     | 
| 
      
 2069 
     | 
    
         
            +
             
     | 
| 
      
 2070 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2071 
     | 
    
         
            +
             
     | 
| 
      
 2072 
     | 
    
         
            +
            * fix dom IDs in HTML formatter (Brian Faherty)
         
     | 
| 
      
 2073 
     | 
    
         
            +
            * fix bug with --drb + formatters when not running in drb
         
     | 
| 
      
 2074 
     | 
    
         
            +
            * include --tag options in drb args (monocle)
         
     | 
| 
      
 2075 
     | 
    
         
            +
            * fix regression so now SPEC_OPTS take precedence over CLI options again (Roman
         
     | 
| 
      
 2076 
     | 
    
         
            +
              Chernyatchik)
         
     | 
| 
      
 2077 
     | 
    
         
            +
            * only call its(:attribute) once (failing example from Brian Dunn)
         
     | 
| 
      
 2078 
     | 
    
         
            +
            * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
         
     | 
| 
      
 2079 
     | 
    
         
            +
              (Damian Nurzynski)
         
     | 
| 
      
 2080 
     | 
    
         
            +
             
     | 
| 
      
 2081 
     | 
    
         
            +
            Deprecations
         
     | 
| 
      
 2082 
     | 
    
         
            +
             
     | 
| 
      
 2083 
     | 
    
         
            +
            * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
         
     | 
| 
      
 2084 
     | 
    
         
            +
              bundler plugin instead)
         
     | 
| 
      
 2085 
     | 
    
         
            +
             
     | 
| 
      
 2086 
     | 
    
         
            +
            ### 2.4.0 / 2011-01-02
         
     | 
| 
      
 2087 
     | 
    
         
            +
             
     | 
| 
      
 2088 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
         
     | 
| 
      
 2089 
     | 
    
         
            +
             
     | 
| 
      
 2090 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2091 
     | 
    
         
            +
             
     | 
| 
      
 2092 
     | 
    
         
            +
            * start the debugger on -d so the stack trace is visible when it stops
         
     | 
| 
      
 2093 
     | 
    
         
            +
              (Clifford Heath)
         
     | 
| 
      
 2094 
     | 
    
         
            +
            * apply hook filtering to examples as well as groups (Myron Marston)
         
     | 
| 
      
 2095 
     | 
    
         
            +
            * support multiple formatters, each with their own output
         
     | 
| 
      
 2096 
     | 
    
         
            +
            * show exception classes in failure messages unless they come from RSpec
         
     | 
| 
      
 2097 
     | 
    
         
            +
              matchers or message expectations
         
     | 
| 
      
 2098 
     | 
    
         
            +
            * before(:all) { pending } sets all examples to pending
         
     | 
| 
      
 2099 
     | 
    
         
            +
             
     | 
| 
      
 2100 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2101 
     | 
    
         
            +
             
     | 
| 
      
 2102 
     | 
    
         
            +
            * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota
         
     | 
| 
      
 2103 
     | 
    
         
            +
              Fukumori)
         
     | 
| 
      
 2104 
     | 
    
         
            +
            * fix bug when running in jruby: be explicit about passing block to super (John
         
     | 
| 
      
 2105 
     | 
    
         
            +
              Firebaugh)
         
     | 
| 
      
 2106 
     | 
    
         
            +
            * rake task doesn't choke on paths with quotes (Janmejay Singh)
         
     | 
| 
      
 2107 
     | 
    
         
            +
            * restore --options option from rspec-1
         
     | 
| 
      
 2108 
     | 
    
         
            +
            * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
         
     | 
| 
      
 2109 
     | 
    
         
            +
            * --configure option generates .rspec file instead of autotest/discover.rb
         
     | 
| 
      
 2110 
     | 
    
         
            +
             
     | 
| 
      
 2111 
     | 
    
         
            +
            ### 2.3.1 / 2010-12-16
         
     | 
| 
      
 2112 
     | 
    
         
            +
             
     | 
| 
      
 2113 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
         
     | 
| 
      
 2114 
     | 
    
         
            +
             
     | 
| 
      
 2115 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2116 
     | 
    
         
            +
             
     | 
| 
      
 2117 
     | 
    
         
            +
            * send debugger warning message to $stdout if RSpec.configuration.error_stream
         
     | 
| 
      
 2118 
     | 
    
         
            +
              has not been defined yet.
         
     | 
| 
      
 2119 
     | 
    
         
            +
            * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
         
     | 
| 
      
 2120 
     | 
    
         
            +
            * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
         
     | 
| 
      
 2121 
     | 
    
         
            +
             
     | 
| 
      
 2122 
     | 
    
         
            +
            ### 2.3.0 / 2010-12-12
         
     | 
| 
      
 2123 
     | 
    
         
            +
             
     | 
| 
      
 2124 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
         
     | 
| 
      
 2125 
     | 
    
         
            +
             
     | 
| 
      
 2126 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2127 
     | 
    
         
            +
             
     | 
| 
      
 2128 
     | 
    
         
            +
            * tell autotest to use "rspec2" if it sees a .rspec file in the project's root
         
     | 
| 
      
 2129 
     | 
    
         
            +
              directory
         
     | 
| 
      
 2130 
     | 
    
         
            +
                * replaces the need for ./autotest/discover.rb, which will not work with
         
     | 
| 
      
 2131 
     | 
    
         
            +
                  all versions of ZenTest and/or autotest
         
     | 
| 
      
 2132 
     | 
    
         
            +
            * config.expect_with
         
     | 
| 
      
 2133 
     | 
    
         
            +
                * :rspec          # => rspec/expectations
         
     | 
| 
      
 2134 
     | 
    
         
            +
                * :stdlib         # => test/unit/assertions
         
     | 
| 
      
 2135 
     | 
    
         
            +
                * :rspec, :stdlib # => both
         
     | 
| 
      
 2136 
     | 
    
         
            +
             
     | 
| 
      
 2137 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2138 
     | 
    
         
            +
             
     | 
| 
      
 2139 
     | 
    
         
            +
            * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
         
     | 
| 
      
 2140 
     | 
    
         
            +
            * ensure explicit subject is only eval'd once (Laszlo Bacsi)
         
     | 
| 
      
 2141 
     | 
    
         
            +
             
     | 
| 
      
 2142 
     | 
    
         
            +
            ### 2.2.1 / 2010-11-28
         
     | 
| 
      
 2143 
     | 
    
         
            +
             
     | 
| 
      
 2144 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
         
     | 
| 
      
 2145 
     | 
    
         
            +
             
     | 
| 
      
 2146 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2147 
     | 
    
         
            +
             
     | 
| 
      
 2148 
     | 
    
         
            +
            * alias_method instead of override Kernel#method_missing (John Wilger)
         
     | 
| 
      
 2149 
     | 
    
         
            +
            * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
         
     | 
| 
      
 2150 
     | 
    
         
            +
            * revert change to debugger (had introduced conflict with Rails)
         
     | 
| 
      
 2151 
     | 
    
         
            +
                * also restored --debugger/-debug option
         
     | 
| 
      
 2152 
     | 
    
         
            +
             
     | 
| 
      
 2153 
     | 
    
         
            +
            ### 2.2.0 / 2010-11-28
         
     | 
| 
      
 2154 
     | 
    
         
            +
             
     | 
| 
      
 2155 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
         
     | 
| 
      
 2156 
     | 
    
         
            +
             
     | 
| 
      
 2157 
     | 
    
         
            +
            Deprecations/changes
         
     | 
| 
      
 2158 
     | 
    
         
            +
             
     | 
| 
      
 2159 
     | 
    
         
            +
            * --debug/-d on command line is deprecated and now has no effect
         
     | 
| 
      
 2160 
     | 
    
         
            +
            * win32console is now ignored; Windows users must use ANSICON for color support
         
     | 
| 
      
 2161 
     | 
    
         
            +
              (Bosko Ivanisevic)
         
     | 
| 
      
 2162 
     | 
    
         
            +
             
     | 
| 
      
 2163 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2164 
     | 
    
         
            +
             
     | 
| 
      
 2165 
     | 
    
         
            +
            * When developing locally rspec-core now works with the rspec-dev setup or your
         
     | 
| 
      
 2166 
     | 
    
         
            +
              local gems
         
     | 
| 
      
 2167 
     | 
    
         
            +
            * Raise exception with helpful message when rspec-1 is loaded alongside rspec-2
         
     | 
| 
      
 2168 
     | 
    
         
            +
              (Justin Ko)
         
     | 
| 
      
 2169 
     | 
    
         
            +
            * debugger statements _just work_ as long as ruby-debug is installed
         
     | 
| 
      
 2170 
     | 
    
         
            +
              * otherwise you get warned, but not fired
         
     | 
| 
      
 2171 
     | 
    
         
            +
            * Expose example.metadata in around hooks
         
     | 
| 
      
 2172 
     | 
    
         
            +
            * Performance improvments (much faster now)
         
     | 
| 
      
 2173 
     | 
    
         
            +
             
     | 
| 
      
 2174 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2175 
     | 
    
         
            +
             
     | 
| 
      
 2176 
     | 
    
         
            +
            * Make sure --fail-fast makes it across drb
         
     | 
| 
      
 2177 
     | 
    
         
            +
            * Pass -Ilib:spec to rcov
         
     | 
| 
      
 2178 
     | 
    
         
            +
             
     | 
| 
      
 2179 
     | 
    
         
            +
            ### 2.1.0 / 2010-11-07
         
     | 
| 
      
 2180 
     | 
    
         
            +
             
     | 
| 
      
 2181 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
         
     | 
| 
      
 2182 
     | 
    
         
            +
             
     | 
| 
      
 2183 
     | 
    
         
            +
            Enhancments
         
     | 
| 
      
 2184 
     | 
    
         
            +
             
     | 
| 
      
 2185 
     | 
    
         
            +
            * Add skip_bundler option to rake task to tell rake task to ignore the presence
         
     | 
| 
      
 2186 
     | 
    
         
            +
              of a Gemfile (jfelchner)
         
     | 
| 
      
 2187 
     | 
    
         
            +
            * Add gemfile option to rake task to tell rake task what Gemfile to look for
         
     | 
| 
      
 2188 
     | 
    
         
            +
              (defaults to 'Gemfile')
         
     | 
| 
      
 2189 
     | 
    
         
            +
            * Allow passing caller trace into Metadata to support extensions (Glenn
         
     | 
| 
      
 2190 
     | 
    
         
            +
              Vanderburg)
         
     | 
| 
      
 2191 
     | 
    
         
            +
            * Add deprecation warning for Spec::Runner.configure to aid upgrade from
         
     | 
| 
      
 2192 
     | 
    
         
            +
              RSpec-1
         
     | 
| 
      
 2193 
     | 
    
         
            +
            * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
         
     | 
| 
      
 2194 
     | 
    
         
            +
            * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
         
     | 
| 
      
 2195 
     | 
    
         
            +
            * Add support for filtering with tags on CLI (Lailson Bandeira)
         
     | 
| 
      
 2196 
     | 
    
         
            +
            * Add a helpful message about RUBYOPT when require fails in bin/rspec (slyphon)
         
     | 
| 
      
 2197 
     | 
    
         
            +
            * Add "-Ilib" to the default rcov options (Tianyi Cui)
         
     | 
| 
      
 2198 
     | 
    
         
            +
            * Make the expectation framework configurable (default rspec, of course)
         
     | 
| 
      
 2199 
     | 
    
         
            +
              (Justin Ko)
         
     | 
| 
      
 2200 
     | 
    
         
            +
            * Add 'pending' to be conditional (Myron Marston)
         
     | 
| 
      
 2201 
     | 
    
         
            +
            * Add explicit support for :if and :unless as metadata keys for conditional run
         
     | 
| 
      
 2202 
     | 
    
         
            +
              of examples (Myron Marston)
         
     | 
| 
      
 2203 
     | 
    
         
            +
            * Add --fail-fast command line option (Jeff Kreeftmeijer)
         
     | 
| 
      
 2204 
     | 
    
         
            +
             
     | 
| 
      
 2205 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2206 
     | 
    
         
            +
             
     | 
| 
      
 2207 
     | 
    
         
            +
            * Eliminate stack overflow with "subject { self }"
         
     | 
| 
      
 2208 
     | 
    
         
            +
            * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
         
     | 
| 
      
 2209 
     | 
    
         
            +
             
     | 
| 
      
 2210 
     | 
    
         
            +
            ### 2.0.1 / 2010-10-18
         
     | 
| 
      
 2211 
     | 
    
         
            +
             
     | 
| 
      
 2212 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
         
     | 
| 
      
 2213 
     | 
    
         
            +
             
     | 
| 
      
 2214 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2215 
     | 
    
         
            +
             
     | 
| 
      
 2216 
     | 
    
         
            +
            * Restore color when using spork + autotest
         
     | 
| 
      
 2217 
     | 
    
         
            +
            * Pending examples without docstrings render the correct message (Josep M.
         
     | 
| 
      
 2218 
     | 
    
         
            +
              Bach)
         
     | 
| 
      
 2219 
     | 
    
         
            +
            * Fixed bug where a failure in a spec file ending in anything but _spec.rb
         
     | 
| 
      
 2220 
     | 
    
         
            +
              would fail in a confusing way.
         
     | 
| 
      
 2221 
     | 
    
         
            +
            * Support backtrace lines from erb templates in html formatter (Alex Crichton)
         
     | 
| 
      
 2222 
     | 
    
         
            +
             
     | 
| 
      
 2223 
     | 
    
         
            +
            ### 2.0.0 / 2010-10-10
         
     | 
| 
      
 2224 
     | 
    
         
            +
             
     | 
| 
      
 2225 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
         
     | 
| 
      
 2226 
     | 
    
         
            +
             
     | 
| 
      
 2227 
     | 
    
         
            +
            RSpec-1 compatibility
         
     | 
| 
      
 2228 
     | 
    
         
            +
             
     | 
| 
      
 2229 
     | 
    
         
            +
            * Rake task uses ENV["SPEC"] as file list if present
         
     | 
| 
      
 2230 
     | 
    
         
            +
             
     | 
| 
      
 2231 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2232 
     | 
    
         
            +
             
     | 
| 
      
 2233 
     | 
    
         
            +
            * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
         
     | 
| 
      
 2234 
     | 
    
         
            +
            * Suppress color codes for non-tty output (except autotest)
         
     | 
| 
      
 2235 
     | 
    
         
            +
             
     | 
| 
      
 2236 
     | 
    
         
            +
            ### 2.0.0.rc / 2010-10-05
         
     | 
| 
      
 2237 
     | 
    
         
            +
             
     | 
| 
      
 2238 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
         
     | 
| 
      
 2239 
     | 
    
         
            +
             
     | 
| 
      
 2240 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2241 
     | 
    
         
            +
             
     | 
| 
      
 2242 
     | 
    
         
            +
            * implicitly require unknown formatters so you don't have to require the file
         
     | 
| 
      
 2243 
     | 
    
         
            +
              explicitly on the command line (Michael Grosser)
         
     | 
| 
      
 2244 
     | 
    
         
            +
            * add --out/-o option to assign output target
         
     | 
| 
      
 2245 
     | 
    
         
            +
            * added fail_fast configuration option to abort on first failure
         
     | 
| 
      
 2246 
     | 
    
         
            +
            * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
         
     | 
| 
      
 2247 
     | 
    
         
            +
             
     | 
| 
      
 2248 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2249 
     | 
    
         
            +
             
     | 
| 
      
 2250 
     | 
    
         
            +
            * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
         
     | 
| 
      
 2251 
     | 
    
         
            +
            * Ignore backtrace lines that come from other languages, like Java or
         
     | 
| 
      
 2252 
     | 
    
         
            +
              Javascript (Charles Lowell)
         
     | 
| 
      
 2253 
     | 
    
         
            +
            * Rake task now does what is expected when setting (or not setting)
         
     | 
| 
      
 2254 
     | 
    
         
            +
              fail_on_error and verbose
         
     | 
| 
      
 2255 
     | 
    
         
            +
            * Fix bug in which before/after(:all) hooks were running on excluded nested
         
     | 
| 
      
 2256 
     | 
    
         
            +
              groups (Myron Marston)
         
     | 
| 
      
 2257 
     | 
    
         
            +
            * Fix before(:all) error handling so that it fails examples in nested groups,
         
     | 
| 
      
 2258 
     | 
    
         
            +
              too (Myron Marston)
         
     | 
| 
      
 2259 
     | 
    
         
            +
             
     | 
| 
      
 2260 
     | 
    
         
            +
            ### 2.0.0.beta.22 / 2010-09-12
         
     | 
| 
      
 2261 
     | 
    
         
            +
             
     | 
| 
      
 2262 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
         
     | 
| 
      
 2263 
     | 
    
         
            +
             
     | 
| 
      
 2264 
     | 
    
         
            +
            Enhancements
         
     | 
| 
      
 2265 
     | 
    
         
            +
             
     | 
| 
      
 2266 
     | 
    
         
            +
            * removed at_exit hook
         
     | 
| 
      
 2267 
     | 
    
         
            +
            * CTRL-C stops the run (almost) immediately
         
     | 
| 
      
 2268 
     | 
    
         
            +
                * first it cleans things up by running the appropriate after(:all) and
         
     | 
| 
      
 2269 
     | 
    
         
            +
                  after(:suite) hooks
         
     | 
| 
      
 2270 
     | 
    
         
            +
                * then it reports on any examples that have already run
         
     | 
| 
      
 2271 
     | 
    
         
            +
            * cleaned up rake task
         
     | 
| 
      
 2272 
     | 
    
         
            +
                * generate correct task under variety of conditions
         
     | 
| 
      
 2273 
     | 
    
         
            +
                * options are more consistent
         
     | 
| 
      
 2274 
     | 
    
         
            +
                * deprecated redundant options
         
     | 
| 
      
 2275 
     | 
    
         
            +
            * run 'bundle exec autotest' when Gemfile is present
         
     | 
| 
      
 2276 
     | 
    
         
            +
            * support ERB in .rspec options files (Justin Ko)
         
     | 
| 
      
 2277 
     | 
    
         
            +
            * depend on bundler for development tasks (Myron Marston)
         
     | 
| 
      
 2278 
     | 
    
         
            +
            * add example_group_finished to formatters and reporter (Roman Chernyatchik)
         
     | 
| 
      
 2279 
     | 
    
         
            +
             
     | 
| 
      
 2280 
     | 
    
         
            +
            Bug fixes
         
     | 
| 
      
 2281 
     | 
    
         
            +
             
     | 
| 
      
 2282 
     | 
    
         
            +
            * support paths with spaces when using autotest (Andreas Neuhaus)
         
     | 
| 
      
 2283 
     | 
    
         
            +
            * fix module_exec with ruby 1.8.6 (Myron Marston)
         
     | 
| 
      
 2284 
     | 
    
         
            +
            * remove context method from top-level
         
     | 
| 
      
 2285 
     | 
    
         
            +
                * was conflicting with irb, for example
         
     | 
| 
      
 2286 
     | 
    
         
            +
            * errors in before(:all) are now reported correctly (Chad Humphries)
         
     | 
| 
      
 2287 
     | 
    
         
            +
             
     | 
| 
      
 2288 
     | 
    
         
            +
            Removals
         
     | 
| 
      
 2289 
     | 
    
         
            +
             
     | 
| 
      
 2290 
     | 
    
         
            +
            * removed -o --options-file command line option
         
     | 
| 
      
 2291 
     | 
    
         
            +
                * use ./.rspec and ~/.rspec
         
     |