From owner-svn-ports-head@FreeBSD.ORG Thu May 21 21:26:08 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A806162C; Thu, 21 May 2015 21:26:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 8B8001A21; Thu, 21 May 2015 21:26:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4LLQ8jV047813; Thu, 21 May 2015 21:26:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4LLQ72o047804; Thu, 21 May 2015 21:26:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505212126.t4LLQ72o047804@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 21 May 2015 21:26:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386975 - in head/devel/rubygem-rash: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 May 2015 21:26:08 -0000 Author: sunpoet Date: Thu May 21 21:26:07 2015 New Revision: 386975 URL: https://svnweb.freebsd.org/changeset/ports/386975 Log: - Add LICENSE - Fix gemspec - Reformat pkg-descr - Bump PORTREVISION for package change - Take maintainership Added: head/devel/rubygem-rash/files/ head/devel/rubygem-rash/files/patch-gemspec (contents, props changed) Modified: head/devel/rubygem-rash/Makefile head/devel/rubygem-rash/pkg-descr Modified: head/devel/rubygem-rash/Makefile ============================================================================== --- head/devel/rubygem-rash/Makefile Thu May 21 21:26:02 2015 (r386974) +++ head/devel/rubygem-rash/Makefile Thu May 21 21:26:07 2015 (r386975) @@ -3,16 +3,19 @@ PORTNAME= rash PORTVERSION= 0.4.0 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple extension to Hashie::Mash for rubyfied keys +LICENSE= MIT + RUN_DEPENDS= rubygem-hashie>=2.0.0:${PORTSDIR}/devel/rubygem-hashie USE_RUBY= yes USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +RUBYGEM_AUTOPLIST= yes .include Added: head/devel/rubygem-rash/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rash/files/patch-gemspec Thu May 21 21:26:07 2015 (r386975) @@ -0,0 +1,11 @@ +--- rash.gemspec.orig 2015-05-21 19:21:02 UTC ++++ rash.gemspec +@@ -23,7 +23,7 @@ Gem::Specification.new do |s| + s.specification_version = 3 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q, ["~> 2.0.0"]) ++ s.add_runtime_dependency(%q, [">= 2.0.0"]) + s.add_development_dependency(%q, ["~> 0.9"]) + s.add_development_dependency(%q, ["~> 3.9"]) + s.add_development_dependency(%q, ["~> 2.5"]) Modified: head/devel/rubygem-rash/pkg-descr ============================================================================== --- head/devel/rubygem-rash/pkg-descr Thu May 21 21:26:02 2015 (r386974) +++ head/devel/rubygem-rash/pkg-descr Thu May 21 21:26:07 2015 (r386975) @@ -1,12 +1,11 @@ Rash is an extension to Hashie -Rash subclasses Hashie::Mash to convert all keys in the hash -to underscore. +Rash subclasses Hashie::Mash to convert all keys in the hash to underscore. -The purpose of this is when working w/ Java (or any other apis) -that return hashes (including nested) that have camelCased keys +The purpose of this is when working w/ Java (or any other apis) that return +hashes (including nested) that have camelCased keys -You will now be able to access those keys through underscored -key names (camelCase still available). +You will now be able to access those keys through underscored key names +(camelCase still available). WWW: https://github.com/tcocca/rash