From owner-svn-ports-all@freebsd.org Sat Jul 8 02:44:07 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70075D872C4; Sat, 8 Jul 2017 02:44:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AB3770484; Sat, 8 Jul 2017 02:44:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v682i6kh048154; Sat, 8 Jul 2017 02:44:06 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v682i6QE048150; Sat, 8 Jul 2017 02:44:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201707080244.v682i6QE048150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 8 Jul 2017 02:44:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445294 - in head/devel: . rubygem-rspec-its X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . rubygem-rspec-its X-SVN-Commit-Revision: 445294 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jul 2017 02:44:07 -0000 Author: swills Date: Sat Jul 8 02:44:05 2017 New Revision: 445294 URL: https://svnweb.freebsd.org/changeset/ports/445294 Log: devel/rubygem-rspec-its: create port RSpec::Its provides the `its` method as a short-hand to specify the expected value of an attribute. WWW: https://github.com/rspec/rspec-its PR: 219978 Submitted by: naito.yuichiro@gmail.com Added: head/devel/rubygem-rspec-its/ head/devel/rubygem-rspec-its/Makefile (contents, props changed) head/devel/rubygem-rspec-its/distinfo (contents, props changed) head/devel/rubygem-rspec-its/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jul 8 02:25:52 2017 (r445293) +++ head/devel/Makefile Sat Jul 8 02:44:05 2017 (r445294) @@ -5584,6 +5584,7 @@ SUBDIR += rubygem-rspec-core SUBDIR += rubygem-rspec-expectations SUBDIR += rubygem-rspec-logsplit + SUBDIR += rubygem-rspec-its SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-rails SUBDIR += rubygem-rspec-support Added: head/devel/rubygem-rspec-its/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rspec-its/Makefile Sat Jul 8 02:44:05 2017 (r445294) @@ -0,0 +1,22 @@ +# Created by: Yuichiro NAITO +# $FreeBSD$ + +PORTNAME= rspec-its +PORTVERSION= 1.2.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= naito.yuichiro@gmail.com +COMMENT= RSpec extension gem for attribute matching + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-rspec-core>=${PORTVERSION:R}:devel/rubygem-rspec-core \ + rubygem-rspec-expectations>=${PORTVERSION:R}:devel/rubygem-rspec-expectations + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-rspec-its/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rspec-its/distinfo Sat Jul 8 02:44:05 2017 (r445294) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496195622 +SHA256 (rubygem/rspec-its-1.2.0.gem) = e39e64faceb99d86cbd181b5137c57cbb3b0e54d7a0fd560a88c2b59bc8597df +SIZE (rubygem/rspec-its-1.2.0.gem) = 12800 Added: head/devel/rubygem-rspec-its/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rspec-its/pkg-descr Sat Jul 8 02:44:05 2017 (r445294) @@ -0,0 +1,4 @@ +RSpec::Its provides the `its` method as a short-hand +to specify the expected value of an attribute. + +WWW: https://github.com/rspec/rspec-its