pkgsrc/devel/ruby-rspec-expectations/PLIST
taca 28f65be6d7 Update ruby-rspec-expectations to 2.14.2
### 2.14.2 / 2013-08-14
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.1...v2.14.2)

Bug fixes

* Fix `be_<predicate>` matcher to not support operator chaining like the
  `be` matcher does (e.g. `be == 5`). This led to some odd behaviors
  since `be_<predicate> == anything` returned a `BeComparedTo` matcher
  and was thus always truthy. This was a consequence of the implementation
  (e.g. subclassing the basic `Be` matcher) and was not intended behavior.
  (Myron Marston).
* Fix `change` matcher to compare using `==` in addition to `===`. This
  is important for an expression like:
  `expect {}.to change { a.class }.from(ClassA).to(ClassB)` because
  `SomeClass === SomeClass` returns false. (Myron Marston)

### 2.14.1 / 2013-08-08
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0...2.14.1)

Bug fixes

* Ensure diff output uses the same encoding as the encoding of
  the string being diff'd to prevent `Encoding::UndefinedConversionError`
  errors (Jon Rowe).

### 2.14.0 / 2013-07-06
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.14.0.rc1...v2.14.0)

Bug fixes

* Values that are not matchers use `#inspect`, rather than `#description` for
  documentation output (Andy Lindeman, Sam Phippen).
* Make `expect(a).to be_within(x).percent_of(y)` work with negative y
  (Katsuhiko Nishimra).
* Make the `be_predicate` matcher work as expected used with `expect{...}.to
  change...`  (Sam Phippen).

### 2.14.0.rc1 / 2013-05-27
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.13.0...v2.14.0.rc1)

Enhancements

* Enhance `yield_control` so that you can specify an exact or relative
  number of times: `expect { }.to yield_control.exactly(3).times`,
  `expect { }.to yield_control.at_least(2).times`, etc (Bartek
  Borkowski).
* Make the differ that is used when an expectation fails better handle arrays
  by splitting each element of the array onto its own line. (Sam Phippen)
* Accept duck-typed strings that respond to `:to_str` as expectation messages.
  (Toby Ovod-Everett)

Bug fixes

* Fix differ to not raise errors when dealing with differently-encoded
  strings (Jon Rowe).
* Fix `expect(something).to be_within(x).percent_of(y)` where x and y are both
  integers (Sam Phippen).
* Fix `have` matcher to handle the fact that on ruby 2.0,
  `Enumerator#size` may return nil (Kenta Murata).
* Fix `expect { raise s }.to raise_error(s)` where s is an error instance
  on ruby 2.0 (Sam Phippen).
* Fix `expect(object).to raise_error` passing. This now warns the user and
  fails the spec (tomykaira).

Deprecations

* Deprecate `expect { }.not_to raise_error(SpecificErrorClass)` or
  `expect { }.not_to raise_error("some specific message")`. Using
  these was prone to hiding failures as they would allow _any other
  error_ to pass. (Sam Phippen and David Chelimsky)
2013-09-15 10:14:58 +00:00

134 lines
6.8 KiB
Text

@comment $NetBSD: PLIST,v 1.10 2013/09/15 10:14:58 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.document
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/Changelog.md
${GEM_LIBDIR}/License.txt
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/features/README.md
${GEM_LIBDIR}/features/Upgrade.md
${GEM_LIBDIR}/features/built_in_matchers/README.md
${GEM_LIBDIR}/features/built_in_matchers/be.feature
${GEM_LIBDIR}/features/built_in_matchers/be_within.feature
${GEM_LIBDIR}/features/built_in_matchers/cover.feature
${GEM_LIBDIR}/features/built_in_matchers/end_with.feature
${GEM_LIBDIR}/features/built_in_matchers/equality.feature
${GEM_LIBDIR}/features/built_in_matchers/exist.feature
${GEM_LIBDIR}/features/built_in_matchers/expect_change.feature
${GEM_LIBDIR}/features/built_in_matchers/expect_error.feature
${GEM_LIBDIR}/features/built_in_matchers/have.feature
${GEM_LIBDIR}/features/built_in_matchers/include.feature
${GEM_LIBDIR}/features/built_in_matchers/match.feature
${GEM_LIBDIR}/features/built_in_matchers/operators.feature
${GEM_LIBDIR}/features/built_in_matchers/predicates.feature
${GEM_LIBDIR}/features/built_in_matchers/respond_to.feature
${GEM_LIBDIR}/features/built_in_matchers/satisfy.feature
${GEM_LIBDIR}/features/built_in_matchers/start_with.feature
${GEM_LIBDIR}/features/built_in_matchers/throw_symbol.feature
${GEM_LIBDIR}/features/built_in_matchers/types.feature
${GEM_LIBDIR}/features/built_in_matchers/yield.feature
${GEM_LIBDIR}/features/custom_matchers/access_running_example.feature
${GEM_LIBDIR}/features/custom_matchers/define_diffable_matcher.feature
${GEM_LIBDIR}/features/custom_matchers/define_matcher.feature
${GEM_LIBDIR}/features/custom_matchers/define_matcher_outside_rspec.feature
${GEM_LIBDIR}/features/custom_matchers/define_matcher_with_fluent_interface.feature
${GEM_LIBDIR}/features/customized_message.feature
${GEM_LIBDIR}/features/diffing.feature
${GEM_LIBDIR}/features/implicit_docstrings.feature
${GEM_LIBDIR}/features/step_definitions/additional_cli_steps.rb
${GEM_LIBDIR}/features/support/env.rb
${GEM_LIBDIR}/features/support/rubinius.rb
${GEM_LIBDIR}/features/syntax_configuration.feature
${GEM_LIBDIR}/features/test_frameworks/test_unit.feature
${GEM_LIBDIR}/lib/rspec-expectations.rb
${GEM_LIBDIR}/lib/rspec/expectations.rb
${GEM_LIBDIR}/lib/rspec/expectations/deprecation.rb
${GEM_LIBDIR}/lib/rspec/expectations/differ.rb
${GEM_LIBDIR}/lib/rspec/expectations/errors.rb
${GEM_LIBDIR}/lib/rspec/expectations/expectation_target.rb
${GEM_LIBDIR}/lib/rspec/expectations/extensions.rb
${GEM_LIBDIR}/lib/rspec/expectations/extensions/array.rb
${GEM_LIBDIR}/lib/rspec/expectations/extensions/object.rb
${GEM_LIBDIR}/lib/rspec/expectations/fail_with.rb
${GEM_LIBDIR}/lib/rspec/expectations/handler.rb
${GEM_LIBDIR}/lib/rspec/expectations/syntax.rb
${GEM_LIBDIR}/lib/rspec/expectations/version.rb
${GEM_LIBDIR}/lib/rspec/matchers.rb
${GEM_LIBDIR}/lib/rspec/matchers/be_close.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/base_matcher.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/be.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/be_instance_of.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/be_kind_of.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/be_within.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/change.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/cover.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/eq.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/eql.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/equal.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/exist.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/has.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/have.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/include.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/match.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/match_array.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/raise_error.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/respond_to.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/satisfy.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/start_and_end_with.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/throw_symbol.rb
${GEM_LIBDIR}/lib/rspec/matchers/built_in/yield.rb
${GEM_LIBDIR}/lib/rspec/matchers/compatibility.rb
${GEM_LIBDIR}/lib/rspec/matchers/configuration.rb
${GEM_LIBDIR}/lib/rspec/matchers/dsl.rb
${GEM_LIBDIR}/lib/rspec/matchers/extensions/instance_eval_with_args.rb
${GEM_LIBDIR}/lib/rspec/matchers/generated_descriptions.rb
${GEM_LIBDIR}/lib/rspec/matchers/matcher.rb
${GEM_LIBDIR}/lib/rspec/matchers/method_missing.rb
${GEM_LIBDIR}/lib/rspec/matchers/operator_matcher.rb
${GEM_LIBDIR}/lib/rspec/matchers/pretty.rb
${GEM_LIBDIR}/lib/rspec/matchers/test_unit_integration.rb
${GEM_LIBDIR}/spec/rspec/expectations/differ_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations/expectation_target_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations/extensions/kernel_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations/fail_with_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations/handler_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations/syntax_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/base_matcher_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/be_close_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/be_instance_of_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/be_kind_of_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/be_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/be_within_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/change_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/configuration_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/cover_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/description_generation_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/dsl_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/eq_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/eql_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/equal_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/exist_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/has_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/have_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/include_matcher_integration_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/include_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/match_array_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/match_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/matcher_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/matchers_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/method_missing_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/operator_matcher_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/raise_error_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/respond_to_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/satisfy_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/start_with_end_with_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/throw_symbol_spec.rb
${GEM_LIBDIR}/spec/rspec/matchers/yield_spec.rb
${GEM_LIBDIR}/spec/spec_helper.rb
${GEM_LIBDIR}/spec/support/classes.rb
${GEM_LIBDIR}/spec/support/in_sub_process.rb
${GEM_LIBDIR}/spec/support/matchers.rb
${GEM_LIBDIR}/spec/support/ruby_version.rb
${GEM_LIBDIR}/spec/support/shared_examples.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec