From owner-svn-ports-all@freebsd.org Wed Dec 30 12:17:51 2015 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 E6B2BA56C08; Wed, 30 Dec 2015 12:17:50 +0000 (UTC) (envelope-from sunpoet@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 BF3BF17C9; Wed, 30 Dec 2015 12:17:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBUCHndi059688; Wed, 30 Dec 2015 12:17:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBUCHnNC059684; Wed, 30 Dec 2015 12:17:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201512301217.tBUCHnNC059684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 30 Dec 2015 12:17:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404852 - in head/databases: . rubygem-state_machines-activemodel 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.20 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, 30 Dec 2015 12:17:51 -0000 Author: sunpoet Date: Wed Dec 30 12:17:49 2015 New Revision: 404852 URL: https://svnweb.freebsd.org/changeset/ports/404852 Log: - Add rubygem-state_machines-activemodel 0.3.0 The StateMachines ActiveModel integration is useful for both standalone usage and for providing the base implementation for ORMs which implement the ActiveModel API. This integration adds support for validation errors and dirty attribute tracking. WWW: https://github.com/state-machines/state_machines-activemodel Added: head/databases/rubygem-state_machines-activemodel/ head/databases/rubygem-state_machines-activemodel/Makefile (contents, props changed) head/databases/rubygem-state_machines-activemodel/distinfo (contents, props changed) head/databases/rubygem-state_machines-activemodel/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Dec 30 12:17:31 2015 (r404851) +++ head/databases/Makefile Wed Dec 30 12:17:49 2015 (r404852) @@ -906,6 +906,7 @@ SUBDIR += rubygem-seed-fu SUBDIR += rubygem-sqlite3 SUBDIR += rubygem-sqlite3-ruby + SUBDIR += rubygem-state_machines-activemodel SUBDIR += rubygem-tarantool SUBDIR += sfcgal SUBDIR += sharedance Added: head/databases/rubygem-state_machines-activemodel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-state_machines-activemodel/Makefile Wed Dec 30 12:17:49 2015 (r404852) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= state_machines-activemodel +PORTVERSION= 0.3.0 +CATEGORIES= databases rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Support for creating state machines for attributes on ActiveModel + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-activemodel4>=4.1:${PORTSDIR}/databases/rubygem-activemodel4 \ + rubygem-state_machines>=0.4.0:${PORTSDIR}/devel/rubygem-state_machines + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/databases/rubygem-state_machines-activemodel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-state_machines-activemodel/distinfo Wed Dec 30 12:17:49 2015 (r404852) @@ -0,0 +1,2 @@ +SHA256 (rubygem/state_machines-activemodel-0.3.0.gem) = 1e7cc1411d4a94d5fc95b3ddbdcc1d8ec0801b804173b8afba6e8b3d4a6550af +SIZE (rubygem/state_machines-activemodel-0.3.0.gem) = 17408 Added: head/databases/rubygem-state_machines-activemodel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-state_machines-activemodel/pkg-descr Wed Dec 30 12:17:49 2015 (r404852) @@ -0,0 +1,6 @@ +The StateMachines ActiveModel integration is useful for both standalone usage +and for providing the base implementation for ORMs which implement the +ActiveModel API. This integration adds support for validation errors and dirty +attribute tracking. + +WWW: https://github.com/state-machines/state_machines-activemodel