sublimetheme 1.0.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/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +230 -0
- data/Rakefile +8 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sublimetheme.rb +6832 -0
- data/lib/sublimetheme/version.rb +3 -0
- data/path/bin/htmldiff +25 -0
- data/path/bin/htmldiff.bat +6 -0
- data/path/bin/ldiff +25 -0
- data/path/bin/ldiff.bat +6 -0
- data/path/bin/rspec +23 -0
- data/path/bin/rspec.bat +6 -0
- data/path/cache/diff-lcs-1.2.5.gem +0 -0
- data/path/cache/rspec-3.3.0.gem +0 -0
- data/path/cache/rspec-core-3.3.2.gem +0 -0
- data/path/cache/rspec-expectations-3.3.1.gem +0 -0
- data/path/cache/rspec-mocks-3.3.2.gem +0 -0
- data/path/cache/rspec-support-3.3.0.gem +0 -0
- data/path/gems/diff-lcs-1.2.5/.autotest +3 -0
- data/path/gems/diff-lcs-1.2.5/.gemtest +0 -0
- data/path/gems/diff-lcs-1.2.5/.hoerc +2 -0
- data/path/gems/diff-lcs-1.2.5/.rspec +2 -0
- data/path/gems/diff-lcs-1.2.5/.travis.yml +22 -0
- data/path/gems/diff-lcs-1.2.5/Contributing.rdoc +64 -0
- data/path/gems/diff-lcs-1.2.5/Gemfile +20 -0
- data/path/gems/diff-lcs-1.2.5/History.rdoc +152 -0
- data/path/gems/diff-lcs-1.2.5/License.rdoc +39 -0
- data/path/gems/diff-lcs-1.2.5/Manifest.txt +38 -0
- data/path/gems/diff-lcs-1.2.5/README.rdoc +85 -0
- data/path/gems/diff-lcs-1.2.5/Rakefile +41 -0
- data/path/gems/diff-lcs-1.2.5/autotest/discover.rb +1 -0
- data/path/gems/diff-lcs-1.2.5/bin/htmldiff +32 -0
- data/path/gems/diff-lcs-1.2.5/bin/ldiff +6 -0
- data/path/gems/diff-lcs-1.2.5/docs/COPYING.txt +339 -0
- data/path/gems/diff-lcs-1.2.5/docs/artistic.txt +127 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff-lcs.rb +3 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs.rb +805 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb +7 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb +37 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb +322 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb +177 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb +149 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb +276 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb +301 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb +195 -0
- data/path/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb +5 -0
- data/path/gems/diff-lcs-1.2.5/spec/change_spec.rb +65 -0
- data/path/gems/diff-lcs-1.2.5/spec/diff_spec.rb +47 -0
- data/path/gems/diff-lcs-1.2.5/spec/hunk_spec.rb +72 -0
- data/path/gems/diff-lcs-1.2.5/spec/issues_spec.rb +24 -0
- data/path/gems/diff-lcs-1.2.5/spec/lcs_spec.rb +54 -0
- data/path/gems/diff-lcs-1.2.5/spec/patch_spec.rb +414 -0
- data/path/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb +214 -0
- data/path/gems/diff-lcs-1.2.5/spec/spec_helper.rb +290 -0
- data/path/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb +310 -0
- data/path/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb +139 -0
- data/path/gems/rspec-3.3.0/License.txt +24 -0
- data/path/gems/rspec-3.3.0/README.md +34 -0
- data/path/gems/rspec-3.3.0/lib/rspec.rb +3 -0
- data/path/gems/rspec-3.3.0/lib/rspec/version.rb +5 -0
- data/path/gems/rspec-core-3.3.2/.document +5 -0
- data/path/gems/rspec-core-3.3.2/.yardopts +8 -0
- data/path/gems/rspec-core-3.3.2/Changelog.md +1856 -0
- data/path/gems/rspec-core-3.3.2/License.txt +25 -0
- data/path/gems/rspec-core-3.3.2/README.md +369 -0
- data/path/gems/rspec-core-3.3.2/exe/rspec +4 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/autorun.rb +3 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core.rb +181 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/backtrace_formatter.rb +64 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/coordinator.rb +66 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/example_minimizer.rb +130 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/runner.rb +139 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/server.rb +61 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/bisect/subset_enumerator.rb +39 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration.rb +1807 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/configuration_options.rb +191 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/drb.rb +111 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/dsl.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example.rb +573 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_group.rb +796 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/example_status_persister.rb +235 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/filter_manager.rb +231 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/flat_map.rb +20 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters.rb +254 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_formatter.rb +70 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/base_text_formatter.rb +77 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_formatter.rb +68 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/bisect_progress_formatter.rb +115 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/exception_presenter.rb +393 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/helpers.rb +109 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_formatter.rb +151 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/html_printer.rb +415 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/json_formatter.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/profile_formatter.rb +68 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/protocol.rb +172 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/formatters/snippet_extractor.rb +116 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/hooks.rb +638 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/memoized_helpers.rb +532 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata.rb +490 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/metadata_filter.rb +235 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/mutex.rb +63 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/notifications.rb +498 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/option_parser.rb +301 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/ordering.rb +158 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/pending.rb +165 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/profiler.rb +32 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer.rb +48 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/.rspec +2 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +96 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/rake_task.rb +158 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/reentrant_mutex.rb +52 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/reporter.rb +220 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/ruby_project.rb +53 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/runner.rb +179 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/sandbox.rb +37 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/set.rb +49 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_context.rb +55 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shared_example_group.rb +210 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/shell_escape.rb +49 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/version.rb +9 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/warnings.rb +40 -0
- data/path/gems/rspec-core-3.3.2/lib/rspec/core/world.rb +178 -0
- data/path/gems/rspec-expectations-3.3.1/.document +5 -0
- data/path/gems/rspec-expectations-3.3.1/.yardopts +6 -0
- data/path/gems/rspec-expectations-3.3.1/Changelog.md +953 -0
- data/path/gems/rspec-expectations-3.3.1/License.txt +24 -0
- data/path/gems/rspec-expectations-3.3.1/README.md +289 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations.rb +81 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/configuration.rb +164 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/expectation_target.rb +113 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/fail_with.rb +31 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/failure_aggregator.rb +194 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/handler.rb +170 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/minitest_integration.rb +31 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/syntax.rb +132 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/expectations/version.rb +8 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers.rb +1009 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in.rb +52 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/all.rb +85 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/base_matcher.rb +181 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be.rb +285 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/change.rb +337 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/compound.rb +293 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/contain_exactly.rb +253 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/cover.rb +24 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eq.rb +40 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/eql.rb +34 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/has.rb +103 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/include.rb +130 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/match.rb +37 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/operators.rb +128 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/output.rb +200 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/raise_error.rb +216 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/respond_to.rb +90 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/satisfy.rb +37 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/built_in/yield.rb +418 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/composable.rb +184 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/dsl.rb +453 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/english_phrasing.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +73 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/fail_matchers.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/generated_descriptions.rb +42 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_delegator.rb +35 -0
- data/path/gems/rspec-expectations-3.3.1/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/path/gems/rspec-mocks-3.3.2/.document +5 -0
- data/path/gems/rspec-mocks-3.3.2/.yardopts +6 -0
- data/path/gems/rspec-mocks-3.3.2/Changelog.md +965 -0
- data/path/gems/rspec-mocks-3.3.2/License.txt +24 -0
- data/path/gems/rspec-mocks-3.3.2/README.md +430 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks.rb +126 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance.rb +11 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/chain.rb +110 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/recorder.rb +264 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain.rb +46 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_list_matcher.rb +100 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/argument_matchers.rb +320 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/configuration.rb +188 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/error_generator.rb +362 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/example_methods.rb +421 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/instance_method_stasher.rb +135 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/have_received.rb +116 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive.rb +130 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_message_chain.rb +80 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/matchers/receive_messages.rb +75 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_chain.rb +87 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/message_expectation.rb +717 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_double.rb +287 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/method_reference.rb +192 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutate_const.rb +335 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/mutex.rb +73 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/object_reference.rb +149 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/order_group.rb +81 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/proxy.rb +439 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/reentrant_mutex.rb +53 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/space.rb +238 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/standalone.rb +3 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/syntax.rb +325 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/targets.rb +97 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/test_double.rb +170 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_double.rb +129 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_message_expecation.rb +54 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/verifying_proxy.rb +213 -0
- data/path/gems/rspec-mocks-3.3.2/lib/rspec/mocks/version.rb +9 -0
- data/path/gems/rspec-support-3.3.0/Changelog.md +125 -0
- data/path/gems/rspec-support-3.3.0/LICENSE.txt +22 -0
- data/path/gems/rspec-support-3.3.0/README.md +26 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support.rb +111 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/caller_filter.rb +83 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/differ.rb +215 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/directory_maker.rb +63 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/encoded_string.rb +155 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/hunk_generator.rb +47 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/matcher_definition.rb +42 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/method_signature_verifier.rb +273 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/object_formatter.rb +93 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/ruby_features.rb +118 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec.rb +81 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/in_sub_process.rb +52 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/library_wide_checks.rb +145 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/shell_out.rb +71 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/stderr_splitter.rb +63 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/string_matcher.rb +46 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/version.rb +7 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/version_checker.rb +53 -0
- data/path/gems/rspec-support-3.3.0/lib/rspec/support/warnings.rb +39 -0
- data/path/specifications/diff-lcs-1.2.5.gemspec +68 -0
- data/path/specifications/rspec-3.3.0.gemspec +42 -0
- data/path/specifications/rspec-core-3.3.2.gemspec +68 -0
- data/path/specifications/rspec-expectations-3.3.1.gemspec +50 -0
- data/path/specifications/rspec-mocks-3.3.2.gemspec +53 -0
- data/path/specifications/rspec-support-3.3.0.gemspec +38 -0
- data/sublimetheme.gemspec +32 -0
- metadata +363 -0
@@ -0,0 +1,113 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Expectations
|
3
|
+
# Wraps the target of an expectation.
|
4
|
+
#
|
5
|
+
# @example
|
6
|
+
# expect(something) # => ExpectationTarget wrapping something
|
7
|
+
# expect { do_something } # => ExpectationTarget wrapping the block
|
8
|
+
#
|
9
|
+
# # used with `to`
|
10
|
+
# expect(actual).to eq(3)
|
11
|
+
#
|
12
|
+
# # with `not_to`
|
13
|
+
# expect(actual).not_to eq(3)
|
14
|
+
#
|
15
|
+
# @note `ExpectationTarget` is not intended to be instantiated
|
16
|
+
# directly by users. Use `expect` instead.
|
17
|
+
class ExpectationTarget
|
18
|
+
# @private
|
19
|
+
# Used as a sentinel value to be able to tell when the user
|
20
|
+
# did not pass an argument. We can't use `nil` for that because
|
21
|
+
# `nil` is a valid value to pass.
|
22
|
+
UndefinedValue = Module.new
|
23
|
+
|
24
|
+
# @api private
|
25
|
+
def initialize(value)
|
26
|
+
@target = value
|
27
|
+
end
|
28
|
+
|
29
|
+
# @private
|
30
|
+
def self.for(value, block)
|
31
|
+
if UndefinedValue.equal?(value)
|
32
|
+
unless block
|
33
|
+
raise ArgumentError, "You must pass either an argument or a block to `expect`."
|
34
|
+
end
|
35
|
+
BlockExpectationTarget.new(block)
|
36
|
+
elsif block
|
37
|
+
raise ArgumentError, "You cannot pass both an argument and a block to `expect`."
|
38
|
+
else
|
39
|
+
new(value)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# Runs the given expectation, passing if `matcher` returns true.
|
44
|
+
# @example
|
45
|
+
# expect(value).to eq(5)
|
46
|
+
# expect { perform }.to raise_error
|
47
|
+
# @param [Matcher]
|
48
|
+
# matcher
|
49
|
+
# @param [String or Proc] message optional message to display when the expectation fails
|
50
|
+
# @return [Boolean] true if the expectation succeeds (else raises)
|
51
|
+
# @see RSpec::Matchers
|
52
|
+
def to(matcher=nil, message=nil, &block)
|
53
|
+
prevent_operator_matchers(:to) unless matcher
|
54
|
+
RSpec::Expectations::PositiveExpectationHandler.handle_matcher(@target, matcher, message, &block)
|
55
|
+
end
|
56
|
+
|
57
|
+
# Runs the given expectation, passing if `matcher` returns false.
|
58
|
+
# @example
|
59
|
+
# expect(value).not_to eq(5)
|
60
|
+
# @param [Matcher]
|
61
|
+
# matcher
|
62
|
+
# @param [String or Proc] message optional message to display when the expectation fails
|
63
|
+
# @return [Boolean] false if the negative expectation succeeds (else raises)
|
64
|
+
# @see RSpec::Matchers
|
65
|
+
def not_to(matcher=nil, message=nil, &block)
|
66
|
+
prevent_operator_matchers(:not_to) unless matcher
|
67
|
+
RSpec::Expectations::NegativeExpectationHandler.handle_matcher(@target, matcher, message, &block)
|
68
|
+
end
|
69
|
+
alias to_not not_to
|
70
|
+
|
71
|
+
private
|
72
|
+
|
73
|
+
def prevent_operator_matchers(verb)
|
74
|
+
raise ArgumentError, "The expect syntax does not support operator matchers, " \
|
75
|
+
"so you must pass a matcher to `##{verb}`."
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
# @private
|
80
|
+
# Validates the provided matcher to ensure it supports block
|
81
|
+
# expectations, in order to avoid user confusion when they
|
82
|
+
# use a block thinking the expectation will be on the return
|
83
|
+
# value of the block rather than the block itself.
|
84
|
+
class BlockExpectationTarget < ExpectationTarget
|
85
|
+
def to(matcher, message=nil, &block)
|
86
|
+
enforce_block_expectation(matcher)
|
87
|
+
super
|
88
|
+
end
|
89
|
+
|
90
|
+
def not_to(matcher, message=nil, &block)
|
91
|
+
enforce_block_expectation(matcher)
|
92
|
+
super
|
93
|
+
end
|
94
|
+
alias to_not not_to
|
95
|
+
|
96
|
+
private
|
97
|
+
|
98
|
+
def enforce_block_expectation(matcher)
|
99
|
+
return if supports_block_expectations?(matcher)
|
100
|
+
|
101
|
+
raise ExpectationNotMetError, "You must pass an argument rather than a block to use the provided " \
|
102
|
+
"matcher (#{RSpec::Support::ObjectFormatter.format(matcher)}), or the matcher must implement " \
|
103
|
+
"`supports_block_expectations?`."
|
104
|
+
end
|
105
|
+
|
106
|
+
def supports_block_expectations?(matcher)
|
107
|
+
matcher.supports_block_expectations?
|
108
|
+
rescue NoMethodError
|
109
|
+
false
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Expectations
|
3
|
+
class << self
|
4
|
+
# @private
|
5
|
+
def differ
|
6
|
+
RSpec::Support::Differ.new(
|
7
|
+
:object_preparer => lambda { |object| RSpec::Matchers::Composable.surface_descriptions_in(object) },
|
8
|
+
:color => RSpec::Matchers.configuration.color?
|
9
|
+
)
|
10
|
+
end
|
11
|
+
|
12
|
+
# Raises an RSpec::Expectations::ExpectationNotMetError with message.
|
13
|
+
# @param [String] message
|
14
|
+
# @param [Object] expected
|
15
|
+
# @param [Object] actual
|
16
|
+
#
|
17
|
+
# Adds a diff to the failure message when `expected` and `actual` are
|
18
|
+
# both present.
|
19
|
+
def fail_with(message, expected=nil, actual=nil)
|
20
|
+
unless message
|
21
|
+
raise ArgumentError, "Failure message is nil. Does your matcher define the " \
|
22
|
+
"appropriate failure_message[_when_negated] method to return a string?"
|
23
|
+
end
|
24
|
+
|
25
|
+
message = ::RSpec::Matchers::ExpectedsForMultipleDiffs.from(expected).message_with_diff(message, differ, actual)
|
26
|
+
|
27
|
+
RSpec::Support.notify_failure(RSpec::Expectations::ExpectationNotMetError.new message)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,194 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Expectations
|
3
|
+
# @private
|
4
|
+
class FailureAggregator
|
5
|
+
attr_reader :block_label, :metadata
|
6
|
+
|
7
|
+
def aggregate
|
8
|
+
RSpec::Support.with_failure_notifier(self) do
|
9
|
+
begin
|
10
|
+
yield
|
11
|
+
rescue ExpectationNotMetError => e
|
12
|
+
# Normally, expectation failures will be notified via the `call` method, below,
|
13
|
+
# but since the failure notifier uses a thread local variable, failing expectations
|
14
|
+
# in another thread will still raise. We handle that here and categorize it as part
|
15
|
+
# of `failures` rather than letting it fall through and be categorized as part of
|
16
|
+
# `other_errors`.
|
17
|
+
failures << e
|
18
|
+
rescue Exception => e
|
19
|
+
# While it is normally a bad practice to rescue `Exception`, it's important we do
|
20
|
+
# so here. It's low risk (`notify_aggregated_failures` below will re-raise the exception,
|
21
|
+
# or raise a `MultipleExpectationsNotMetError` that includes the exception), and it's
|
22
|
+
# essential that the user is notified of expectation failures that may have already
|
23
|
+
# occurred in the `aggregate_failures` block. Those expectation failures may provide
|
24
|
+
# important diagnostics for understanding why this exception occurred, and if we simply
|
25
|
+
# allowed this exception to be raised as-is, it would (wrongly) suggest to the user
|
26
|
+
# that the expectation passed when it did not, which would be quite confusing.
|
27
|
+
other_errors << e
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
notify_aggregated_failures
|
32
|
+
end
|
33
|
+
|
34
|
+
def failures
|
35
|
+
@failures ||= []
|
36
|
+
end
|
37
|
+
|
38
|
+
def other_errors
|
39
|
+
@other_errors ||= []
|
40
|
+
end
|
41
|
+
|
42
|
+
# This method is defined to satisfy the callable interface
|
43
|
+
# expected by `RSpec::Support.with_failure_notifier`.
|
44
|
+
def call(failure, options)
|
45
|
+
source_id = options[:source_id]
|
46
|
+
return if source_id && @seen_source_ids.key?(source_id)
|
47
|
+
|
48
|
+
@seen_source_ids[source_id] = true
|
49
|
+
assign_backtrace(failure) unless failure.backtrace
|
50
|
+
failures << failure
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
if RSpec::Support::Ruby.jruby?
|
56
|
+
# On JRuby, `caller` and `raise` produce different backtraces with regards to `.java`
|
57
|
+
# stack frames. It's important that we use `raise` for JRuby to produce a backtrace
|
58
|
+
# that has a continuous common section with the raised `MultipleExpectationsNotMetError`,
|
59
|
+
# so that rspec-core's truncation logic can work properly on it to list the backtrace
|
60
|
+
# relative to the `aggregate_failures` block.
|
61
|
+
def assign_backtrace(failure)
|
62
|
+
raise failure
|
63
|
+
rescue failure.class => e
|
64
|
+
failure.set_backtrace(e.backtrace)
|
65
|
+
end
|
66
|
+
else
|
67
|
+
# Using `caller` performs better (and is simpler) than `raise` on most Rubies.
|
68
|
+
def assign_backtrace(failure)
|
69
|
+
failure.set_backtrace(caller)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def initialize(block_label, metadata)
|
74
|
+
@block_label = block_label
|
75
|
+
@metadata = metadata
|
76
|
+
@seen_source_ids = {} # don't want to load stdlib set
|
77
|
+
end
|
78
|
+
|
79
|
+
def notify_aggregated_failures
|
80
|
+
all_errors = failures + other_errors
|
81
|
+
|
82
|
+
case all_errors.size
|
83
|
+
when 0 then return nil
|
84
|
+
when 1 then RSpec::Support.notify_failure all_errors.first
|
85
|
+
else RSpec::Support.notify_failure MultipleExpectationsNotMetError.new(self)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# Exception raised from `aggregate_failures` when multiple expectations fail.
|
91
|
+
class MultipleExpectationsNotMetError
|
92
|
+
# @return [String] The fully formatted exception message.
|
93
|
+
def message
|
94
|
+
@message ||= (["#{summary}:"] + enumerated_failures + enumerated_errors).join("\n\n")
|
95
|
+
end
|
96
|
+
|
97
|
+
# @return [Array<RSpec::Expectations::ExpectationNotMetError>] The list of expectation failures.
|
98
|
+
def failures
|
99
|
+
@failure_aggregator.failures
|
100
|
+
end
|
101
|
+
|
102
|
+
# @return [Array<Exception>] The list of other exceptions.
|
103
|
+
def other_errors
|
104
|
+
@failure_aggregator.other_errors
|
105
|
+
end
|
106
|
+
|
107
|
+
# @return [Array<Exception>] The list of expectation failures and other exceptions, combined.
|
108
|
+
attr_reader :all_exceptions
|
109
|
+
|
110
|
+
# @return [String] The user-assigned label for the aggregation block.
|
111
|
+
def aggregation_block_label
|
112
|
+
@failure_aggregator.block_label
|
113
|
+
end
|
114
|
+
|
115
|
+
# @return [Hash] The metadata hash passed to `aggregate_failures`.
|
116
|
+
def aggregation_metadata
|
117
|
+
@failure_aggregator.metadata
|
118
|
+
end
|
119
|
+
|
120
|
+
# @return [String] A summary of the failure, including the block label and a count of failures.
|
121
|
+
def summary
|
122
|
+
"Got #{exception_count_description} from failure aggregation " \
|
123
|
+
"block#{block_description}"
|
124
|
+
end
|
125
|
+
|
126
|
+
# return [String] A description of the failure/error counts.
|
127
|
+
def exception_count_description
|
128
|
+
failure_count = pluralize("failure", failures.size)
|
129
|
+
return failure_count if other_errors.empty?
|
130
|
+
error_count = pluralize("other error", other_errors.size)
|
131
|
+
"#{failure_count} and #{error_count}"
|
132
|
+
end
|
133
|
+
|
134
|
+
private
|
135
|
+
|
136
|
+
def initialize(failure_aggregator)
|
137
|
+
@failure_aggregator = failure_aggregator
|
138
|
+
@all_exceptions = failures + other_errors
|
139
|
+
end
|
140
|
+
|
141
|
+
def block_description
|
142
|
+
return "" unless aggregation_block_label
|
143
|
+
" #{aggregation_block_label.inspect}"
|
144
|
+
end
|
145
|
+
|
146
|
+
def pluralize(noun, count)
|
147
|
+
"#{count} #{noun}#{'s' unless count == 1}"
|
148
|
+
end
|
149
|
+
|
150
|
+
def enumerated(exceptions, index_offset)
|
151
|
+
exceptions.each_with_index.map do |exception, index|
|
152
|
+
index += index_offset
|
153
|
+
formatted_message = yield exception
|
154
|
+
"#{index_label index}#{indented formatted_message, index}"
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
def enumerated_failures
|
159
|
+
enumerated(failures, 0, &:message)
|
160
|
+
end
|
161
|
+
|
162
|
+
def enumerated_errors
|
163
|
+
enumerated(other_errors, failures.size) do |error|
|
164
|
+
"#{error.class}: #{error.message}"
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
def indented(failure_message, index)
|
169
|
+
line_1, *rest = failure_message.strip.lines.to_a
|
170
|
+
first_line_indentation = ' ' * (longest_index_label_width - width_of_label(index))
|
171
|
+
|
172
|
+
first_line_indentation + line_1 + rest.map do |line|
|
173
|
+
line =~ /\S/ ? indentation + line : line
|
174
|
+
end.join
|
175
|
+
end
|
176
|
+
|
177
|
+
def indentation
|
178
|
+
@indentation ||= ' ' * longest_index_label_width
|
179
|
+
end
|
180
|
+
|
181
|
+
def longest_index_label_width
|
182
|
+
@longest_index_label_width ||= width_of_label(failures.size)
|
183
|
+
end
|
184
|
+
|
185
|
+
def width_of_label(index)
|
186
|
+
index_label(index).chars.count
|
187
|
+
end
|
188
|
+
|
189
|
+
def index_label(index)
|
190
|
+
" #{index + 1}) "
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
194
|
+
end
|
@@ -0,0 +1,170 @@
|
|
1
|
+
module RSpec
|
2
|
+
module Expectations
|
3
|
+
# @private
|
4
|
+
module ExpectationHelper
|
5
|
+
def self.check_message(msg)
|
6
|
+
unless msg.nil? || msg.respond_to?(:to_str) || msg.respond_to?(:call)
|
7
|
+
::Kernel.warn [
|
8
|
+
"WARNING: ignoring the provided expectation message argument (",
|
9
|
+
msg.inspect,
|
10
|
+
") since it is not a string or a proc."
|
11
|
+
].join
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# Returns an RSpec-3+ compatible matcher, wrapping a legacy one
|
16
|
+
# in an adapter if necessary.
|
17
|
+
#
|
18
|
+
# @private
|
19
|
+
def self.modern_matcher_from(matcher)
|
20
|
+
LegacyMatcherAdapter::RSpec2.wrap(matcher) ||
|
21
|
+
LegacyMatcherAdapter::RSpec1.wrap(matcher) || matcher
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.with_matcher(handler, matcher, message)
|
25
|
+
check_message(message)
|
26
|
+
matcher = modern_matcher_from(matcher)
|
27
|
+
yield matcher
|
28
|
+
ensure
|
29
|
+
::RSpec::Matchers.last_expectation_handler = handler
|
30
|
+
::RSpec::Matchers.last_matcher = matcher
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.handle_failure(matcher, message, failure_message_method)
|
34
|
+
message = message.call if message.respond_to?(:call)
|
35
|
+
message ||= matcher.__send__(failure_message_method)
|
36
|
+
|
37
|
+
if matcher.respond_to?(:diffable?) && matcher.diffable?
|
38
|
+
::RSpec::Expectations.fail_with message, matcher.expected, matcher.actual
|
39
|
+
else
|
40
|
+
::RSpec::Expectations.fail_with message
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# @private
|
46
|
+
class PositiveExpectationHandler
|
47
|
+
def self.handle_matcher(actual, initial_matcher, message=nil, &block)
|
48
|
+
ExpectationHelper.with_matcher(self, initial_matcher, message) do |matcher|
|
49
|
+
return ::RSpec::Matchers::BuiltIn::PositiveOperatorMatcher.new(actual) unless initial_matcher
|
50
|
+
matcher.matches?(actual, &block) || ExpectationHelper.handle_failure(matcher, message, :failure_message)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.verb
|
55
|
+
"should"
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.should_method
|
59
|
+
:should
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.opposite_should_method
|
63
|
+
:should_not
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# @private
|
68
|
+
class NegativeExpectationHandler
|
69
|
+
def self.handle_matcher(actual, initial_matcher, message=nil, &block)
|
70
|
+
ExpectationHelper.with_matcher(self, initial_matcher, message) do |matcher|
|
71
|
+
return ::RSpec::Matchers::BuiltIn::NegativeOperatorMatcher.new(actual) unless initial_matcher
|
72
|
+
!(does_not_match?(matcher, actual, &block) || ExpectationHelper.handle_failure(matcher, message, :failure_message_when_negated))
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.does_not_match?(matcher, actual, &block)
|
77
|
+
if matcher.respond_to?(:does_not_match?)
|
78
|
+
matcher.does_not_match?(actual, &block)
|
79
|
+
else
|
80
|
+
!matcher.matches?(actual, &block)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def self.verb
|
85
|
+
"should not"
|
86
|
+
end
|
87
|
+
|
88
|
+
def self.should_method
|
89
|
+
:should_not
|
90
|
+
end
|
91
|
+
|
92
|
+
def self.opposite_should_method
|
93
|
+
:should
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
# Wraps a matcher written against one of the legacy protocols in
|
98
|
+
# order to present the current protocol.
|
99
|
+
#
|
100
|
+
# @private
|
101
|
+
class LegacyMatcherAdapter < Matchers::MatcherDelegator
|
102
|
+
def initialize(matcher)
|
103
|
+
super
|
104
|
+
::RSpec.warn_deprecation(<<-EOS.gsub(/^\s+\|/, ''), :type => "legacy_matcher")
|
105
|
+
|#{matcher.class.name || matcher.inspect} implements a legacy RSpec matcher
|
106
|
+
|protocol. For the current protocol you should expose the failure messages
|
107
|
+
|via the `failure_message` and `failure_message_when_negated` methods.
|
108
|
+
|(Used from #{CallerFilter.first_non_rspec_line})
|
109
|
+
EOS
|
110
|
+
end
|
111
|
+
|
112
|
+
def self.wrap(matcher)
|
113
|
+
new(matcher) if interface_matches?(matcher)
|
114
|
+
end
|
115
|
+
|
116
|
+
# Starting in RSpec 1.2 (and continuing through all 2.x releases),
|
117
|
+
# the failure message protocol was:
|
118
|
+
# * `failure_message_for_should`
|
119
|
+
# * `failure_message_for_should_not`
|
120
|
+
# @private
|
121
|
+
class RSpec2 < self
|
122
|
+
def failure_message
|
123
|
+
base_matcher.failure_message_for_should
|
124
|
+
end
|
125
|
+
|
126
|
+
def failure_message_when_negated
|
127
|
+
base_matcher.failure_message_for_should_not
|
128
|
+
end
|
129
|
+
|
130
|
+
def self.interface_matches?(matcher)
|
131
|
+
(
|
132
|
+
!matcher.respond_to?(:failure_message) &&
|
133
|
+
matcher.respond_to?(:failure_message_for_should)
|
134
|
+
) || (
|
135
|
+
!matcher.respond_to?(:failure_message_when_negated) &&
|
136
|
+
matcher.respond_to?(:failure_message_for_should_not)
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# Before RSpec 1.2, the failure message protocol was:
|
142
|
+
# * `failure_message`
|
143
|
+
# * `negative_failure_message`
|
144
|
+
# @private
|
145
|
+
class RSpec1 < self
|
146
|
+
def failure_message
|
147
|
+
base_matcher.failure_message
|
148
|
+
end
|
149
|
+
|
150
|
+
def failure_message_when_negated
|
151
|
+
base_matcher.negative_failure_message
|
152
|
+
end
|
153
|
+
|
154
|
+
# Note: `failure_message` is part of the RSpec 3 protocol
|
155
|
+
# (paired with `failure_message_when_negated`), so we don't check
|
156
|
+
# for `failure_message` here.
|
157
|
+
def self.interface_matches?(matcher)
|
158
|
+
!matcher.respond_to?(:failure_message_when_negated) &&
|
159
|
+
matcher.respond_to?(:negative_failure_message)
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# RSpec 3.0 was released with the class name misspelled. For SemVer compatibility,
|
165
|
+
# we will provide this misspelled alias until 4.0.
|
166
|
+
# @deprecated Use LegacyMatcherAdapter instead.
|
167
|
+
# @private
|
168
|
+
LegacyMacherAdapter = LegacyMatcherAdapter
|
169
|
+
end
|
170
|
+
end
|