Received: by mail.netbsd.org (Postfix, from userid 605) id 4904784DFC; Wed, 6 Feb 2019 15:16:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C4DF884DE5 for ; Wed, 6 Feb 2019 15:16:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Abb_ufZozgCX for ; Wed, 6 Feb 2019 15:16:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EE27584CDA for ; Wed, 6 Feb 2019 15:16:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB6C1FB16; Wed, 6 Feb 2019 15:16:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1549466212261630" MIME-Version: 1.0 Date: Wed, 6 Feb 2019 15:16:52 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-rspec-rails To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20190206151652.EB6C1FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1549466212261630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Wed Feb 6 15:16:52 UTC 2019 Modified Files: pkgsrc/devel/ruby-rspec-rails: Makefile distinfo Log Message: devel/ruby-rspec-rails: update to 3.8.2 ### 3.8.2 / 2019-01-13 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.8.1...v3.8.2) Bug Fixes: * Fix issue with generator for preview specs where `Mailer` would be duplicated in the name. (Kohei Sugi, #2037) * Fix the request spec generator to handle namespaced files. (Kohei Sugi, #2057) * Further truncate system test filenames to handle cases when extra words are prepended. (Takumi Kaji, #2058) * Backport: Make the `ActiveJob` matchers fail when multiple jobs are queued for negated matches. e.g. `expect { job; job; }.to_not have_enqueued_job (Emric Istanful, #2069) ### 3.8.1 / 2018-10-23 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.8.0...v3.8.1) Bug Fixes: * Fix `NoMethodError: undefined method 'strip'` when using a `Pathname` object as the fixture file path. (Aaron Kromer, #2026) * When generating feature specs, do not duplicate namespace in the path name. (Laura Paakkinen, #2034) * Prevent `ActiveJob::DeserializationError` from being issued when `ActiveJob` matchers de-serialize arguments. (@aymeric-ledorze, #2036) ### 3.8.0 / 2018-08-04 [Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.7.2...v3.8.0) Enhancements: * Improved message when migrations are pending in the default `rails_helper.rb` (Koichi ITO, #1924) * `have_http_status` matcher now supports Rails 5.2 style response symbols (Douglas Lovell, #1951) * Change generated Rails helper to match Rails standards for Rails.root (Alessandro Rodi, #1960) * At support for asserting enqueued jobs have no wait period attached. (Brad Charna, #1977) * Cache instances of `ActionView::Template` used in `stub_template` resulting in increased performance due to less allocations and setup. (Simon Coffey, #1979) * Rails scaffold generator now respects longer namespaces (e.g. api/v1/\). (Laura Paakkinen, #1958) Bug Fixes: * Escape quotation characters when producing method names for system spec screenshots. (Shane Cavanaugh, #1955) * Use relative path for resolving fixtures when `fixture_path` is not set. (Laurent Cobos, #1943) * Allow custom template resolvers in view specs. (@ahorek, #1941) To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/ruby-rspec-rails/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/ruby-rspec-rails/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1549466212261630 Content-Disposition: inline Content-Length: 2533 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-rspec-rails/Makefile diff -u pkgsrc/devel/ruby-rspec-rails/Makefile:1.31 pkgsrc/devel/ruby-rspec-rails/Makefile:1.32 --- pkgsrc/devel/ruby-rspec-rails/Makefile:1.31 Sun Mar 18 14:21:21 2018 +++ pkgsrc/devel/ruby-rspec-rails/Makefile Wed Feb 6 15:16:52 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2018/03/18 14:21:21 taca Exp $ +# $NetBSD: Makefile,v 1.32 2019/02/06 15:16:52 taca Exp $ -DISTNAME= rspec-rails-3.7.2 +DISTNAME= rspec-rails-3.8.2 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org @@ -11,10 +11,10 @@ LICENSE= mit DEPENDS+= ${RUBY_ACTIVESUPPORT_DEPENDS} DEPENDS+= ${RUBY_ACTIONPACK_DEPENDS} DEPENDS+= ${RUBY_RAILTIES_DEPENDS} -DEPENDS+= ${RUBY_PKGPREFIX}-rspec-support>=3.7.0<3.8:../../devel/ruby-rspec-support -DEPENDS+= ${RUBY_PKGPREFIX}-rspec-core>=3.7.0<3.8:../../devel/ruby-rspec-core -DEPENDS+= ${RUBY_PKGPREFIX}-rspec-expectations>=3.7.0<3.8:../../devel/ruby-rspec-expectations -DEPENDS+= ${RUBY_PKGPREFIX}-rspec-mocks>=3.7.0<3.8:../../devel/ruby-rspec-mocks +DEPENDS+= ${RUBY_PKGPREFIX}-rspec-support>=3.8.0<3.9:../../devel/ruby-rspec-support +DEPENDS+= ${RUBY_PKGPREFIX}-rspec-core>=3.8.0<3.9:../../devel/ruby-rspec-core +DEPENDS+= ${RUBY_PKGPREFIX}-rspec-expectations>=3.8.0<3.9:../../devel/ruby-rspec-expectations +DEPENDS+= ${RUBY_PKGPREFIX}-rspec-mocks>=3.8.0<3.9:../../devel/ruby-rspec-mocks RUBY_RAILS_ACCEPTED= Index: pkgsrc/devel/ruby-rspec-rails/distinfo diff -u pkgsrc/devel/ruby-rspec-rails/distinfo:1.27 pkgsrc/devel/ruby-rspec-rails/distinfo:1.28 --- pkgsrc/devel/ruby-rspec-rails/distinfo:1.27 Wed Mar 14 14:23:28 2018 +++ pkgsrc/devel/ruby-rspec-rails/distinfo Wed Feb 6 15:16:52 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.27 2018/03/14 14:23:28 taca Exp $ +$NetBSD: distinfo,v 1.28 2019/02/06 15:16:52 taca Exp $ -SHA1 (rspec-rails-3.7.2.gem) = 4ca0d61b9e4374c3a66cb0c8ff158ddf4e66fb38 -RMD160 (rspec-rails-3.7.2.gem) = ce54b9fce77eff4474664f5b326ffa41e1fe5e21 -SHA512 (rspec-rails-3.7.2.gem) = 5f80bb3cefaf695e852a69342bbac7636b7f9939323a37a13816df204b06dd8183ac756eb961b747becf12a73a7e8c12bb47bdd696d992e4db9b42ff67e32d8e -Size (rspec-rails-3.7.2.gem) = 58880 bytes +SHA1 (rspec-rails-3.8.2.gem) = 368aac03db64d37b2c98efff38d2079fc8941e56 +RMD160 (rspec-rails-3.8.2.gem) = 308cd3643310855b2bc9510be6f78630350479b0 +SHA512 (rspec-rails-3.8.2.gem) = 8aaaff1c5fed54aab0997d3e258d227de82a0f1306e6f2b7ea99a2c0f027648b3dceb5baa5ea292dbb8366f8f21609fdd53a70dab7472db54f2bca8a46c8d6d6 +Size (rspec-rails-3.8.2.gem) = 60928 bytes --_----------=_1549466212261630--