Update ruby-rspec-support 5o 3.3.0.
### 3.3.0 / 2015-06-12 [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.2...v3.3.0) Enhancements: * Improve formatting of arrays and hashes in failure messages so they use our custom formatting of matchers, time objects, etc. (Myron Marston, Nicholas Chmielewski, #205) * Use improved formatting for diffs as well. (Nicholas Chmielewski, #205) Bug Fixes: * Fix `FuzzyMatcher` so that it checks `expected == actual` rather than `actual == expected`, which avoids errors in situations where the `actual` object's `==` is improperly implemented to assume that only objects of the same type will be given. This allows rspec-mocks' `anything` to match against objects with buggy `==` definitions. (Myron Marston, #193)
This commit is contained in:
parent
96df4bf622
commit
260b6907e0
3 changed files with 11 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.3 2015/03/13 13:47:40 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2015/06/12 23:57:27 taca Exp $
|
||||
|
||||
DISTNAME= rspec-support-3.2.2
|
||||
DISTNAME= rspec-support-3.3.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/02/07 14:39:34 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2015/06/12 23:57:27 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/Changelog.md
|
||||
${GEM_LIBDIR}/LICENSE.txt
|
||||
|
@ -12,19 +12,21 @@ ${GEM_LIBDIR}/lib/rspec/support/fuzzy_matcher.rb
|
|||
${GEM_LIBDIR}/lib/rspec/support/hunk_generator.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/matcher_definition.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/method_signature_verifier.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/object_formatter.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/recursive_const_methods.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/ruby_features.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/deprecation_helpers.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/formatting_support.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/in_sub_process.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/prevent_load_time_warnings.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/library_wide_checks.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/shell_out.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/stderr_splitter.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/string_matcher.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/with_isolated_directory.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/spec/with_isolated_stderr.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/version.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/version_checker.rb
|
||||
${GEM_LIBDIR}/lib/rspec/support/warnings.rb
|
||||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
||||
@pkgdir lib/ruby/gems/2.0.0/build_info
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.3 2015/03/13 13:47:40 taca Exp $
|
||||
$NetBSD: distinfo,v 1.4 2015/06/12 23:57:27 taca Exp $
|
||||
|
||||
SHA1 (rspec-support-3.2.2.gem) = 0b9542cee264f3e09039bc16fb379c0839b4ea9d
|
||||
RMD160 (rspec-support-3.2.2.gem) = a72035235968aad392b2cdec6e1082d998173cbc
|
||||
Size (rspec-support-3.2.2.gem) = 25600 bytes
|
||||
SHA1 (rspec-support-3.3.0.gem) = 790f9352b41dd472394767d449b23537635ca0c0
|
||||
RMD160 (rspec-support-3.3.0.gem) = c45fcc3196867471f23bae7ef4db17882205a5ac
|
||||
Size (rspec-support-3.3.0.gem) = 28672 bytes
|
||||
|
|
Loading…
Reference in a new issue