Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ruby2.5-rubygem-rspec-expectations-3.7.0-lp152.3.2 RPM for aarch64

From OpenSuSE Ports Leap 15.2 for aarch64

Name: ruby2.5-rubygem-rspec-expectations Distribution: openSUSE Leap 15.2
Version: 3.7.0 Vendor: openSUSE
Release: lp152.3.2 Build date: Thu Nov 7 22:27:49 2019
Group: Development/Languages/Ruby Build host: obs-arm-1
Size: 385856 Source RPM: rubygem-rspec-expectations-3.7.0-lp152.3.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/rspec/rspec-expectations
Summary: API to express expected outcomes of a code example
rspec-expectations provides a simple, readable API to express expected
outcomes of a code example.

Provides

Requires

License

MIT

Changelog

* Thu Oct 26 2017 coolo@suse.com
  - updated to version 3.7.0
    see installed Changelog.md
    [#]## 3.8 Development
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.7.0...master)
    [#]## 3.7.0 / 2017-10-17
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0...v3.7.0)
    Enhancements:
    * Improve compatibility with `--enable-frozen-string-literal` option
      on Ruby 2.3+. (Pat Allan, #997)
* Tue May 23 2017 coolo@suse.com
  - updated to version 3.6.0
    see installed Changelog.md
    [#]## 3.6.0 / 2017-05-04
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0.beta2...v3.6.0)
    Enhancements:
    * Treat NoMethodError as a failure for comparison matchers. (Jon Rowe, #972)
    * Allow for scoped aliased and negated matchers--just call
      `alias_matcher` or `define_negated_matcher` from within an example
      group. (Markus Reiter, #974)
    * Improve failure message of `change` matcher with block and `satisfy` matcher
      by including the block snippet instead of just describing it as `result` or
      `block` when Ripper is available. (Yuji Nakayama, #987)
    Bug Fixes:
    * Fix `yield_with_args` and `yield_successive_args` matchers so that
      they compare expected to actual args at the time the args are yielded
      instead of at the end, in case the method that is yielding mutates the
      arguments after yielding. (Alyssa Ross, #965)
    [#]## 3.6.0.beta2 / 2016-12-12
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0.beta1...v3.6.0.beta2)
    Bug Fixes:
    * Using the exist matcher on `File` no longer produces a deprecation warning.
      (Jon Rowe, #954)
    [#]## 3.6.0.beta1 / 2016-10-09
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0...v3.6.0.beta1)
    Bug Fixes:
    * Fix `contain_exactly` to work correctly with ranges. (Myron Marston, #940)
    * Fix `change` to work correctly with sets. (Marcin Gajewski, #939)
* Sat Jul 02 2016 coolo@suse.com
  - updated to version 3.5.0
    see installed Changelog.md
    [#]## 3.5.0 / 2016-07-01
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta4...v3.5.0)
    * *No user facing changes since beta4**
    [#]## 3.5.0.beta4 / 2016-06-05
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta3...v3.5.0.beta4)
    Bug Fixes:
    * Fix `include` matcher so that it provides a valid diff for hashes. (Yuji Nakayama, #916)
    [#]## 3.5.0.beta3 / 2016-04-02
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta2...v3.5.0.beta3)
    Enhancements:
    * Make `rspec/expectations/minitest_integration` work on Minitest::Spec
      5.6+. (Myron Marston, #904)
    * Add an alias `having_attributes` for `have_attributes` matcher.
      (Yuji Nakayama, #905)
    * Improve `change` matcher error message when block is mis-used.
      (Alex Altair, #908)
    [#]## 3.5.0.beta2 / 2016-03-10
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.5.0.beta1...v3.5.0.beta2)
    Enhancements:
    * Add the ability to raise an error on encountering false positives via
      `RSpec::Configuration#on_potential_false_positives = :raise`. (Jon Rowe, #900)
    * When using the custom matcher DSL, support new
      `notify_expectation_failures: true` option for the `match` method to
      allow expectation failures to be raised as normal instead of being
      converted into a `false` return value for `matches?`. (Jon Rowe, #892)
    Bug Fixes:
    * Allow `should` deprecation check to work on `BasicObject`s. (James Coleman, #898)
    [#]## 3.5.0.beta1 / 2016-02-06
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.4.0...v3.5.0.beta1)
    Enhancements:
    * Make `match_when_negated` in custom matcher DSL support use of
      expectations within the match logic. (Chris Arcand, #789)
    Bug Fixes:
    * Return `true` as expected from passing negated expectations
      (such as `expect("foo").not_to eq "bar"`), so they work
      properly when used within a `match` or `match_when_negated`
      block. (Chris Arcand, #789)
* Fri Nov 13 2015 coolo@suse.com
  - updated to version 3.4.0
    see installed Changelog.md
    [#]## 3.4.0 / 2015-11-11
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.1...v3.4.0)
    Enhancements:
    * Warn when `RSpec::Matchers` is included in a superclass after it has
      already been included in a subclass on MRI 1.9, since that situation
      can cause uses of `super` to trigger infinite recursion. (Myron Marston, #816)
    * Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
      `SystemExit`. It is dangerous to interfere with these. (Myron Marston, #845)
    * Add `#with_captures` to the
      [match matcher](https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/match-matcher)
      which allows a user to specify expected captures when matching a regex
      against a string. (Sam Phippen, #848)
    * Always print compound failure messages in the multi-line form. Trying
      to print it all on a single line didn't read very well. (Myron Marston, #859)
    Bug Fixes:
    * Fix failure message from dynamic predicate matchers when the object
      does not respond to the predicate so that it is inspected rather
      than relying upon it's `to_s` -- that way for `nil`, `"nil"` is
      printed rather than an empty string. (Myron Marston, #841)
    * Fix SystemStackError raised when diffing an Enumerable object
      whose `#each` includes the object itself. (Yuji Nakayama, #857)
* Thu Jul 16 2015 coolo@suse.com
  - updated to version 3.3.1
    see installed Changelog.md
    [#]## 3.3.1 / 2015-07-15
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.0...v3.3.1)
    Bug Fixes:
    * Fix `be >`, `be <`, etc so that it fails rather than allowing an
      argument error to be raised when compared against an object of the
      wrong type. This allows it to be used in composed matcher expressions
      against heterogeneous objects. (Dennis Günnewig, #809)
    * Fix `respond_to` to work properly on target objects
      that redefine the `method` method. (unmanbearpig, #821)
* Sat Jun 13 2015 coolo@suse.com
  - updated to version 3.3.0
    see installed Changelog.md
    [#]## 3.3.0 / 2015-06-12
    [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.2.1...v3.3.0)
    Enhancements:
    * Expose `RSpec::Matchers::EnglishPhrasing` to make it easier to write
      nice failure messages in custom matchers. (Jared Beck, #736)
    * Add `RSpec::Matchers::FailMatchers`, a mixin which provides
      `fail`, `fail_with` and `fail_including` matchers for use in
      specifying that an expectation fails for use by
      extension/plugin authors. (Charlie Rudolph, #729)
    * Avoid loading `tempfile` (and its dependencies) unless
      it is absolutely needed. (Myron Marston, #735)
    * Improve failure output when attempting to use `be_true` or `be_false`.
      (Tim Wade, #744)
    * Define `RSpec::Matchers#respond_to_missing?` so that
      `RSpec::Matchers#respond_to?` and `RSpec::Matchers#method` handle
      dynamic predicate matchers. (Andrei Botalov, #751)
    * Use custom Time/DateTime/BigDecimal formatting for all matchers
      so they are consistently represented in failure messages.
      (Gavin Miller, #740)
    * Add configuration to turn off warnings about matcher combinations that
      may cause false positives. (Jon Rowe, #768)
    * Warn when using a bare `raise_error` matcher that you may be subject to
      false positives. (Jon Rowe, #768)
    * Warn rather than raise when using the`raise_error` matcher in negative
      expectations that may be subject to false positives. (Jon Rowe, #775)
    * Improve failure message for `include(a, b, c)` so that if `a` and `b`
      are included the failure message only mentions `c`. (Chris Arcand, #780)
    * Allow `satisfy` matcher to take an optional description argument
      that will be used in the `description`, `failure_message` and
      `failure_message_when_negated` in place of the undescriptive
      "sastify block". (Chris Arcand, #783)
    * Add new `aggregate_failures` API that allows multiple independent
      expectations to all fail and be listed in the failure output, rather
      than the example aborting on the first failure. (Myron Marston, #776)
    * Improve `raise_error` matcher so that it can accept a matcher as a single argument
      that matches the message. (Time Wade, #782)
    Bug Fixes:
    * Make `contain_exactly` / `match_array` work with strict test doubles
      that have not defined `<=>`. (Myron Marston, #758)
    * Fix `include` matcher so that it omits the diff when it would
      confusingly highlight items that are actually included but are not
      an exact match in a line-by-line diff. (Tim Wade, #763)
    * Fix `match` matcher so that it does not blow up when matching a string
      or regex against another matcher (rather than a string or regex).
      (Myron Marston, #772)
    * Silence whitespace-only diffs. (Myron Marston, #801)
* Sat Apr 11 2015 coolo@suse.com
  - updated to version 3.2.1
    Bug Fixes:
    * Prevent `Range`s from being enumerated when generating matcher
    descriptions. (Jon Rowe, #755)
    * Ensure exception messages are compared as strings in the `raise_error`
    matcher. (Jon Rowe, #755)
* Fri Feb 06 2015 coolo@suse.com
  - updated to version 3.2.0
    Enhancements:
    * Add `block_arg` method to custom matcher API, which allows you to
    access the block passed to a custom matcher, if there is one.
    (Mike Dalton, #645)
    * Provide more detail in failure message of `yield_control` matcher.
    (Jon Rowe, #650)
    * Add a shorthand syntax for `chain` in the matcher DSL which assigns values
    for use elsewhere, for example `chain :and_smaller_than, :small_value`
    creates an `attr_reader` for `small_value` (Tom Stuart, #644)
    * Provide a more helpful deprecation message when using the `should` syntax.
    (Elia Schito, #663)
    * Provide more detail in the `have_attributes` matcher failure message.
    (Jon Rowe,  #668)
    * Make the `have_attributes` matcher diffable.
    (Jon Rowe, Alexey Fedorov, #668)
    * Add `output(...).to_std(out|err)_from_any_process` as alternatives
    to `output(...).to_std(out|err)`. The latter doesn't work when a sub
    process writes to the named stream but is much faster.
    (Alex Genco, #700)
    * Improve compound matchers (created by `and` and `or`) so that diffs
    are included in failures when one or more of their matchers
    are diffable. (Alexey Fedorov, #713)
    Bug Fixes:
    * Avoid calling `private_methods` from the `be` predicate matcher on
    the target object if the object publicly responds to the predicate
    method. This avoids a possible error that can occur if the object
    raises errors from `private_methods` (which can happen with celluloid
    objects). (@chapmajs, #670)
    * Make `yield_control` (with no modifier) default to
    `at_least(:once)` rather than raising a confusing error
    when multiple yields are encountered.
    (Myron Marston, #675)
* Tue Jan 20 2015 dmueller@suse.com
  - update to 3.1.2:
    * Rails 4.1 enablement
    [ full changelog is very long, see
      https://github.com/rspec/rspec-expectations/blob/master/Changelog.md
      for details ]
* Mon Oct 13 2014 coolo@suse.com
  - adapt to new rubygem packaging

Files

/usr/lib64/ruby/gems/2.5.0/build_info
/usr/lib64/ruby/gems/2.5.0/cache/rspec-expectations-3.7.0.gem
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/.document
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/.yardopts
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/Changelog.md
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/LICENSE.md
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/README.md
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/block_snippet_extractor.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/configuration.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/expectation_target.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/fail_with.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/failure_aggregator.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/handler.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/minitest_integration.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/syntax.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/expectations/version.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/aliased_matcher.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/all.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/base_matcher.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_between.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_instance_of.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_kind_of.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/be_within.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/change.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/compound.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/contain_exactly.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/cover.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/eq.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/eql.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/equal.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/exist.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/has.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/have_attributes.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/include.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/match.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/operators.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/output.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/raise_error.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/respond_to.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/satisfy.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/start_or_end_with.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/throw_symbol.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/built_in/yield.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/composable.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/dsl.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/english_phrasing.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/fail_matchers.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/generated_descriptions.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/matcher_delegator.rb
/usr/lib64/ruby/gems/2.5.0/gems/rspec-expectations-3.7.0/lib/rspec/matchers/matcher_protocol.rb
/usr/lib64/ruby/gems/2.5.0/specifications/rspec-expectations-3.7.0.gemspec
/usr/share/doc/packages/ruby2.5-rubygem-rspec-expectations
/usr/share/doc/packages/ruby2.5-rubygem-rspec-expectations/Changelog.md
/usr/share/doc/packages/ruby2.5-rubygem-rspec-expectations/LICENSE.md
/usr/share/doc/packages/ruby2.5-rubygem-rspec-expectations/README.md


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:09:08 2024