pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/ruby-rspec-mocks



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Oct  9 15:04:44 UTC 2016

Modified Files:
        pkgsrc/devel/ruby-rspec-mocks: Makefile PLIST distinfo

Log Message:
Update ruby-rspec-mocks to 3.5.0.

### 3.5.0 / 2016-07-01
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta4...v3.5.0)

Enhancements:

* Provides a nice string representation of
  `RSpec::Mocks::MessageExpectation` (Myron Marston, #1095)

### 3.5.0.beta4 / 2016-06-05
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta3...v3.5.0.beta4)

Enhancements:

* Add `and_throw` to any instance handling. (Tobias Bühlmann, #1068)

### 3.5.0.beta3 / 2016-04-02
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta2...v3.5.0.beta3)

Enhancements:

* Issue warning when attempting to use unsupported
  `allow(...).to receive(...).ordered`. (Jon Rowe, #1000)
* Add `rspec/mocks/minitest_integration`, to properly integrate rspec-mocks
  with minitest. (Myron Marston, #1065)

### 3.5.0.beta2 / 2016-03-10
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.5.0.beta1...v3.5.0.beta2)

Enhancements:

* Improve error message displayed when using `and_wrap_original` on pure test
  doubles. (betesh, #1063)

Bug Fixes:

* Fix issue that prevented `receive_message_chain(...).with(...)` working
  correctly on "any instance" mocks. (Jon Rowe, #1061)

### 3.5.0.beta1 / 2016-02-06
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.1...v3.5.0.beta1)

Bug Fixes:

* Allow `any_instance_of(...).to receive(...)` to use `and_yield` multiple
  times. (Kilian Cirera Sant, #1054)
* Allow matchers which inherit from `rspec-mocks` matchers to be used for
  `allow`. (Andrew Kozin, #1056)
* Prevent stubbing `respond_to?` on partial doubles from causing infinite
  recursion. (Jon Rowe, #1013)
* Prevent aliased methods from disapearing after being mocked with
  `any_instance` (regression from #1043). (Joe Rafaniello, #1060)


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/ruby-rspec-mocks/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/ruby-rspec-mocks/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/ruby-rspec-mocks/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/ruby-rspec-mocks/Makefile
diff -u pkgsrc/devel/ruby-rspec-mocks/Makefile:1.20 pkgsrc/devel/ruby-rspec-mocks/Makefile:1.21
--- pkgsrc/devel/ruby-rspec-mocks/Makefile:1.20 Tue Feb 16 16:01:13 2016
+++ pkgsrc/devel/ruby-rspec-mocks/Makefile      Sun Oct  9 15:04:44 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2016/02/16 16:01:13 taca Exp $
+# $NetBSD: Makefile,v 1.21 2016/10/09 15:04:44 taca Exp $
 
-DISTNAME=      rspec-mocks-3.4.1
+DISTNAME=      rspec-mocks-3.5.0
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -8,7 +8,7 @@ HOMEPAGE=       http://relishapp.com/rspec
 COMMENT=       This is test-double framework for rspec
 LICENSE=       mit
 
-DEPENDS+=      ${RUBY_PKGPREFIX}-rspec-support>=3.4.0<3.5:../../devel/ruby-rspec-support
+DEPENDS+=      ${RUBY_PKGPREFIX}-rspec-support>=3.5.0<3.6:../../devel/ruby-rspec-support
 DEPENDS+=      ${RUBY_PKGPREFIX}-diff-lcs<2:../../textproc/ruby-diff-lcs
 
 .include "../../lang/ruby/gem.mk"

Index: pkgsrc/devel/ruby-rspec-mocks/PLIST
diff -u pkgsrc/devel/ruby-rspec-mocks/PLIST:1.14 pkgsrc/devel/ruby-rspec-mocks/PLIST:1.15
--- pkgsrc/devel/ruby-rspec-mocks/PLIST:1.14    Sun Nov 29 14:51:46 2015
+++ pkgsrc/devel/ruby-rspec-mocks/PLIST Sun Oct  9 15:04:44 2016
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2015/11/29 14:51:46 taca Exp $
+@comment $NetBSD: PLIST,v 1.15 2016/10/09 15:04:44 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/.document
 ${GEM_LIBDIR}/.yardopts
@@ -32,6 +32,7 @@ ${GEM_LIBDIR}/lib/rspec/mocks/message_ch
 ${GEM_LIBDIR}/lib/rspec/mocks/message_expectation.rb
 ${GEM_LIBDIR}/lib/rspec/mocks/method_double.rb
 ${GEM_LIBDIR}/lib/rspec/mocks/method_reference.rb
+${GEM_LIBDIR}/lib/rspec/mocks/minitest_integration.rb
 ${GEM_LIBDIR}/lib/rspec/mocks/mutate_const.rb
 ${GEM_LIBDIR}/lib/rspec/mocks/object_reference.rb
 ${GEM_LIBDIR}/lib/rspec/mocks/order_group.rb

Index: pkgsrc/devel/ruby-rspec-mocks/distinfo
diff -u pkgsrc/devel/ruby-rspec-mocks/distinfo:1.21 pkgsrc/devel/ruby-rspec-mocks/distinfo:1.22
--- pkgsrc/devel/ruby-rspec-mocks/distinfo:1.21 Tue Feb 16 16:01:13 2016
+++ pkgsrc/devel/ruby-rspec-mocks/distinfo      Sun Oct  9 15:04:44 2016
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.21 2016/02/16 16:01:13 taca Exp $
+$NetBSD: distinfo,v 1.22 2016/10/09 15:04:44 taca Exp $
 
-SHA1 (rspec-mocks-3.4.1.gem) = ac0fa5b8d50eda88fd0a330bb413d94649d4e012
-RMD160 (rspec-mocks-3.4.1.gem) = 72b3704994c87c585a3e853718073d6233c5981b
-SHA512 (rspec-mocks-3.4.1.gem) = ba73c868aa8811edccf303aa9258c592d122d414089cd7e4e0f215f89a54c6f9e4de04ff19b0c96cc8a15a0913a50f9ea958b175f05e890826dc2f9b64e1aa4d
-Size (rspec-mocks-3.4.1.gem) = 74752 bytes
+SHA1 (rspec-mocks-3.5.0.gem) = 2e747b4338dbfbcfd742c903ff19900d4aa5eb30
+RMD160 (rspec-mocks-3.5.0.gem) = 483c4c50a0a97eb8be709f9ebc37c6e8730f28d3
+SHA512 (rspec-mocks-3.5.0.gem) = 7abe6ac8a15a96b12e3951bfef70b47107987f7e83ed0de79ff0209ca5c3b68a108a2d3cbd567da625a84fa58227736843647e3fd507c542b9f4313759763cec
+Size (rspec-mocks-3.5.0.gem) = 76800 bytes



Home | Main Index | Thread Index | Old Index