pkgsrc/devel/ruby-rspec-expectations/PLIST

136 lines
6.8 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.11 2014/03/14 16:42:22 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
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 12:14:58 +02:00
${GEM_LIBDIR}/features/support/rubinius.rb
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
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 12:14:58 +02:00
${GEM_LIBDIR}/lib/rspec/matchers/test_unit_integration.rb
${GEM_LIBDIR}/spec/rspec/expectations/differ_spec.rb
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
Update ruby-rspec-expectations to 2.12.0. ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.3...2.12.0) Enhancements * Colorize diffs if the `--color` option is configured. (Alex Coplan) * Include backtraces in unexpected errors handled by `raise_error` matcher (Myron Marston) * Print a warning when users accidentally pass a non-string argument as an expectation message (Sam Phippen) * `=~` and `match_array` matchers output a more useful error message when the actual value is not an array (or an object that responds to `#to_ary`) (Sam Phippen) Bug fixes * Fix `include` matcher so that `expect({}).to include(:a => nil)` fails as it should (Sam Phippen). * Fix `be_an_instance_of` matcher so that `Class#to_s` is used in the description rather than `Class#inspect`, since some classes (like `ActiveRecord::Base`) define a long, verbose `#inspect`. (Tom Stuart) ### 2.11.3 / 2012-09-04 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.2...v2.11.3) Bug fixes * Fix (and deprecate) `expect { }.should` syntax so that it works even though it was never a documented or intended syntax. It worked as a consequence of the implementation of `expect` in RSpec 2.10 and earlier. (Myron Marston) * Ensure #== is defined on built in matchers so that they can be composed. For example: expect { user.emailed! }.to change { user.last_emailed_at }.to be_within(1.second).of(Time.zone.now) ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder)
2012-12-16 17:44:31 +01:00
${GEM_LIBDIR}/spec/rspec/expectations/syntax_spec.rb
${GEM_LIBDIR}/spec/rspec/expectations_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
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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
Update ruby-rspec-expectations to 2.11.2. ### 2.11.2 / 2012-07-25 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.1...v2.11.2) Bug fixes * Define `should` and `should_not` on `Object` rather than `BasicObject` on MacRuby. On MacRuby, `BasicObject` is defined but is not the root of the object hierarchy. (Gabriel Gilder) ### 2.11.1 / 2012-07-08 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.11.0...v2.11.1) Bug fixes * Constrain `actual` in `be_within` matcher to values that respond to `-` instead of requiring a specific type. * `Time`, for example, is a legit alternative. ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.10.0...v2.11.0) Enhancements * Expand `expect` syntax so that it supports expections on bare values in addition to blocks (Myron Marston). * Add configuration options to control available expectation syntaxes (Myron Marston): * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :expect }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = :should }` * `RSpec.configuration.expect_with(:rspec) { |c| c.syntax = [:should, :expect] }` * `RSpec.configuration.add_should_and_should_not_to Delegator` Bug fixes * Allow only `Numeric` values to be the "actual" in the `be_within` matcher. This prevents confusing error messages. (Su Zhang @zhangsu) * Define `should` and `should_not` on `BasicObject` rather than `Kernel` on 1.9. This makes `should` and `should_not` work properly with `BasicObject`-subclassed proxy objects like `Delegator`. (Myron Marston)
2012-09-03 17:52:38 +02:00
${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