From owner-svn-ports-head@FreeBSD.ORG Sun Jul 28 23:20:27 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1EB24144; Sun, 28 Jul 2013 23:20:27 +0000 (UTC) (envelope-from swills@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F02D72FB0; Sun, 28 Jul 2013 23:20:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6SNKQSh042658; Sun, 28 Jul 2013 23:20:26 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6SNKQkY042654; Sun, 28 Jul 2013 23:20:26 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201307282320.r6SNKQkY042654@svn.freebsd.org> From: Steve Wills Date: Sun, 28 Jul 2013 23:20:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323862 - in head/devel: . rubygem-github_api 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.14 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: Sun, 28 Jul 2013 23:20:27 -0000 Author: swills Date: Sun Jul 28 23:20:25 2013 New Revision: 323862 URL: http://svnweb.freebsd.org/changeset/ports/323862 Log: Ruby wrapper that supports all of the GitHub API v3 methods(nearly 200). It's build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Repos.new if working solely with repositories is your main concern. WWW: https://github.com/peter-murach/github Added: head/devel/rubygem-github_api/ head/devel/rubygem-github_api/Makefile (contents, props changed) head/devel/rubygem-github_api/distinfo (contents, props changed) head/devel/rubygem-github_api/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 28 22:48:07 2013 (r323861) +++ head/devel/Makefile Sun Jul 28 23:20:25 2013 (r323862) @@ -4091,6 +4091,7 @@ SUBDIR += rubygem-gibbler SUBDIR += rubygem-gio2 SUBDIR += rubygem-git + SUBDIR += rubygem-github_api SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-grit Added: head/devel/rubygem-github_api/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-github_api/Makefile Sun Jul 28 23:20:25 2013 (r323862) @@ -0,0 +1,23 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= github_api +PORTVERSION= 0.10.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Wrapper that supports all of the GitHub API v3 methods + +RUN_DEPENDS= rubygem-addressable>=0:${PORTSDIR}/www/rubygem-addressable \ + rubygem-faraday>=0.8.7:${PORTSDIR}/www/rubygem-faraday \ + rubygem-hashie>=1.2:${PORTSDIR}/devel/rubygem-hashie \ + rubygem-multi_json>=1.4:${PORTSDIR}/devel/rubygem-multi_json \ + rubygem-nokogiri>=1.6.0:${PORTSDIR}/textproc/rubygem-nokogiri \ + rubygem-oauth2>=0:${PORTSDIR}/net/rubygem-oauth2 + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-github_api/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-github_api/distinfo Sun Jul 28 23:20:25 2013 (r323862) @@ -0,0 +1,2 @@ +SHA256 (rubygem/github_api-0.10.2.gem) = 89e5e9cf093c9ff06691f747f512e8df24e6ad3454f1e7cc97529a1af7529734 +SIZE (rubygem/github_api-0.10.2.gem) = 689152 Added: head/devel/rubygem-github_api/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-github_api/pkg-descr Sun Jul 28 23:20:25 2013 (r323862) @@ -0,0 +1,6 @@ +Ruby wrapper that supports all of the GitHub API v3 methods(nearly 200). It's +build in a modular way, that is, you can either instantiate the whole api +wrapper Github.new or use parts of it e.i. Github::Repos.new if working solely +with repositories is your main concern. + +WWW: https://github.com/peter-murach/github