Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Oct 2015 21:21:24 +0000 (UTC)
From:      Michael Moll <mmoll@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398724 - in head/devel: . rubygem-rubocop
Message-ID:  <201510062121.t96LLO4f040740@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mmoll
Date: Tue Oct  6 21:21:23 2015
New Revision: 398724
URL: https://svnweb.freebsd.org/changeset/ports/398724

Log:
  new port: devel/rubygem-rubocop
  
  RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of
  the guidelines outlined in the community Ruby Style Guide, but most aspects of
  its behavior can be tweaked via various configuration options.
  
  WWW: http://batsov.com/rubocop/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Oct  6 21:19:38 2015	(r398723)
+++ head/devel/Makefile	Tue Oct  6 21:21:23 2015	(r398724)
@@ -4902,6 +4902,7 @@
     SUBDIR += rubygem-rspec-mocks
     SUBDIR += rubygem-rspec-support
     SUBDIR += rubygem-rubigen
+    SUBDIR += rubygem-rubocop
     SUBDIR += rubygem-ruby-atmos-pure
     SUBDIR += rubygem-ruby-bugzilla
     SUBDIR += rubygem-ruby-filemagic

Added: head/devel/rubygem-rubocop/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-rubocop/Makefile	Tue Oct  6 21:21:23 2015	(r398724)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	rubocop
+PORTVERSION=	0.34.2
+CATEGORIES=	devel ruby
+MASTER_SITES=	RG
+
+MAINTAINER=	mmoll@FreeBSD.org
+COMMENT=	Ruby code style checking tool
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	rubygem-astrolabe>=1.3:${PORTSDIR}/devel/rubygem-astrolabe \
+		rubygem-parser>=2.2.2.5:${PORTSDIR}/devel/rubygem-parser \
+		rubygem-powerpack>=0.1:${PORTSDIR}/devel/rubygem-powerpack \
+		rubygem-rainbow>=1.99.1:${PORTSDIR}/devel/rubygem-rainbow \
+		rubygem-ruby-progressbar>=1.4:${PORTSDIR}/devel/rubygem-ruby-progressbar
+
+NO_ARCH=	yes
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+PLIST_FILES=	bin/rubocop
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-rubocop/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-rubocop/distinfo	Tue Oct  6 21:21:23 2015	(r398724)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/rubocop-0.34.2.gem) = d387d22b07c8ba54043d742ee7738dd31440808e371e86502e6d06fbf5d22b7a
+SIZE (rubygem/rubocop-0.34.2.gem) = 297984

Added: head/devel/rubygem-rubocop/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-rubocop/pkg-descr	Tue Oct  6 21:21:23 2015	(r398724)
@@ -0,0 +1,5 @@
+RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of
+the guidelines outlined in the community Ruby Style Guide, but most aspects of
+its behavior can be tweaked via various configuration options.
+
+WWW: http://batsov.com/rubocop/



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