Ruby implementation of Douglas Crockford's JSMin JavaScript minifier.

WWW: http://github.com/rgrove/jsmin/
This commit is contained in:
Steve Wills 2013-06-09 21:38:59 +00:00
parent 21746f0a06
commit 20dfe18cfc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=320411
4 changed files with 22 additions and 0 deletions

View file

@ -1293,6 +1293,7 @@
SUBDIR += rubygem-htmltools
SUBDIR += rubygem-ini
SUBDIR += rubygem-itextomml
SUBDIR += rubygem-jsmin
SUBDIR += rubygem-kramdown
SUBDIR += rubygem-kwalify
SUBDIR += rubygem-libxml-ruby

View file

@ -0,0 +1,16 @@
# $FreeBSD$
PORTNAME= jsmin
PORTVERSION= 1.0.1
CATEGORIES= textproc rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Ruby implementation of Douglas Crockford's JSMin JavaScript minifier
USE_RUBY= yes
USE_PYTHON= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/jsmin-1.0.1.gem) = 2d676103c842adb2f5ac41ccb567ab438fef935abd54999a9f29c1c01aa77d6e
SIZE (rubygem/jsmin-1.0.1.gem) = 5120

View file

@ -0,0 +1,3 @@
Ruby implementation of Douglas Crockford's JSMin JavaScript minifier.
WWW: http://github.com/rgrove/jsmin/