From owner-svn-ports-all@freebsd.org Wed Apr 5 19:59:24 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 33E4BD2FA60; Wed, 5 Apr 2017 19:59:24 +0000 (UTC) (envelope-from jrm@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 ED38FA46; Wed, 5 Apr 2017 19:59:23 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v35JxNOE042544; Wed, 5 Apr 2017 19:59:23 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v35JxMgY042539; Wed, 5 Apr 2017 19:59:22 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201704051959.v35JxMgY042539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Wed, 5 Apr 2017 19:59:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437833 - in head/devel: . rubygem-appraisal X-SVN-Group: ports-head 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: Wed, 05 Apr 2017 19:59:24 -0000 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 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/