svn commit: r445294 - in head/devel: . rubygem-rspec-its

Steve Wills swills at FreeBSD.org
Sat Jul 8 02:44:07 UTC 2017


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 at 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 <naito.yuichiro at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	rspec-its
+PORTVERSION=	1.2.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	naito.yuichiro at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list