Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Apr 2017 19:59:22 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r437833 - in head/devel: . rubygem-appraisal
Message-ID:  <201704051959.v35JxMgY042539@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jrm
Date: Wed Apr  5 19:59:22 2017
New Revision: 437833
URL: https://svnweb.freebsd.org/changeset/ports/437833

Log:
  New port, devel/rubygem-appraisal: Integrates with bundler and rake to test
  library dependencies
  
  WWW: https://github.com/thoughtbot/appraisal/
  
  Approved by:	swills (mentor, implicit)
  Differential Revision:	https://reviews.freebsd.org/D10284

Added:
  head/devel/rubygem-appraisal/
  head/devel/rubygem-appraisal/Makefile   (contents, props changed)
  head/devel/rubygem-appraisal/distinfo   (contents, props changed)
  head/devel/rubygem-appraisal/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Apr  5 19:59:20 2017	(r437832)
+++ head/devel/Makefile	Wed Apr  5 19:59:22 2017	(r437833)
@@ -5116,6 +5116,7 @@
     SUBDIR += rubygem-apipie-bindings
     SUBDIR += rubygem-apipie-params
     SUBDIR += rubygem-app_config
+    SUBDIR += rubygem-appraisal
     SUBDIR += rubygem-arr-pm
     SUBDIR += rubygem-arrayfields
     SUBDIR += rubygem-ascii85

Added: head/devel/rubygem-appraisal/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-appraisal/Makefile	Wed Apr  5 19:59:22 2017	(r437833)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	appraisal
+PORTVERSION=	2.1.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	jrm@FreeBSD.org
+COMMENT=	Integrates with bundler and rake to test library dependencies
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS=	rubygem-rake>=0:devel/rubygem-rake \
+		rubygem-bundler>=0:sysutils/rubygem-bundler \
+		rubygem-thor>=0.14.0:devel/rubygem-thor \
+		rubygem-activesupport5>0:devel/rubygem-activesupport5 \
+		rubygem-rspec>=3.0:devel/rubygem-rspec
+
+USE_RUBY=	yes
+USES=		gem
+
+PLIST_FILES=	bin/appraisal
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-appraisal/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-appraisal/distinfo	Wed Apr  5 19:59:22 2017	(r437833)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1491421131
+SHA256 (rubygem/appraisal-2.1.0.gem) = 77135863db8a1117e4cd77778e0591f26224f65b87450ee5f48d6b484100cf82
+SIZE (rubygem/appraisal-2.1.0.gem) = 24064

Added: head/devel/rubygem-appraisal/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-appraisal/pkg-descr	Wed Apr  5 19:59:22 2017	(r437833)
@@ -0,0 +1,6 @@
+Appraisal integrates with bundler and rake to test your library against
+different versions of dependencies in repeatable scenarios called "appraisals."
+Appraisal is designed to make it easy to check for regressions in your library
+without interfering with day-to-day development using Bundler.
+
+WWW: http://github.com/thoughtbot/appraisal/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704051959.v35JxMgY042539>