ff51dff23c
Mr Bones is a handy tool that creates new Ruby projects from a code skeleton. The skeleton contains some starter code and a collection of rake tasks to ease the management and deployment of your source code. Several Mr Bones plugins are available for creating git repositories, creating GitHub projects, running various test suites and source code analysis tools. WWW: https://github.com/TwP/bones RG: https://rubygems.org/gems/bones
28 lines
671 B
Makefile
28 lines
671 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bones
|
|
PORTVERSION= 3.8.1
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Tool to create new projects from code skeleton
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= rubygem-little-plugger>=1.1:${PORTSDIR}/devel/rubygem-little-plugger \
|
|
rubygem-loquacious>=1.9:${PORTSDIR}/devel/rubygem-loquacious \
|
|
rubygem-rake>=0.8.7:${PORTSDIR}/devel/rubygem-rake
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
PLIST_FILES= bin/bones
|
|
|
|
post-patch:
|
|
# adjust gemspec for "rdoc ~> 3.0"
|
|
@${REINPLACE_CMD} -e '27,40 d' ${WRKSRC}/${GEM_NAME}.gemspec
|
|
|
|
.include <bsd.port.mk>
|