summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-11-12 22:41:48 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-11-12 22:41:48 +0000
commit24b4a21fadef03ade59b6111c6d581fdb2ffb2ad (patch)
tree604337becfd5d5d50a67f63a87e6bf7491da078e /sysutils
parent- Mark BROKEN: checksum mismatch (diff)
Bundler is a tool that manages gem dependencies for your ruby application. It
takes a gem manifest file and is able to fetch, download, and install the gems and all child dependencies specified in this manifest. It can manage any update to the gem manifest file and update the bundled gems accordingly. It also letsyou run any ruby code in context of the bundled gem environment. WWW: http://github.com/wycats/bundler PR: ports/140355 Submitted by: Robert Gogolok <gogo at cs.uni-sb.de>
Notes
Notes: svn path=/head/; revision=244178
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/rubygem-bundler/Makefile19
-rw-r--r--sysutils/rubygem-bundler/distinfo3
-rw-r--r--sysutils/rubygem-bundler/pkg-descr7
4 files changed, 30 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 950794e87366..ba80ebcce16e 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -686,6 +686,7 @@
SUBDIR += rtty
SUBDIR += ruby-log4r
SUBDIR += ruby-quota
+ SUBDIR += rubygem-bundler
SUBDIR += rubygem-capistrano
SUBDIR += rubygem-god
SUBDIR += runit
diff --git a/sysutils/rubygem-bundler/Makefile b/sysutils/rubygem-bundler/Makefile
new file mode 100644
index 000000000000..a3c46b864ab3
--- /dev/null
+++ b/sysutils/rubygem-bundler/Makefile
@@ -0,0 +1,19 @@
+# Ports collection makefile for: rubygem-bundler
+# Date created: 7 November 2009
+# Whom: Robert Gogolok <gogo@cs.uni-sb.de>
+#
+# $FreeBSD$
+
+PORTNAME= bundler
+PORTVERSION= 0.7.0
+CATEGORIES= sysutils rubygems
+MASTER_SITES= http://gems.rubyforge.mmmultiworks.com/gems/
+
+MAINTAINER= gogo@cs.uni-sb.de
+COMMENT= A tool that manages gem dependencies for ruby applications
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
diff --git a/sysutils/rubygem-bundler/distinfo b/sysutils/rubygem-bundler/distinfo
new file mode 100644
index 000000000000..8a5c2ebdadd7
--- /dev/null
+++ b/sysutils/rubygem-bundler/distinfo
@@ -0,0 +1,3 @@
+MD5 (rubygem/bundler-0.7.0.gem) = 36598821168c1e6c709187151ba20026
+SHA256 (rubygem/bundler-0.7.0.gem) = f699a9be9b5fda5cab2eb15a8e0ce18991b0919bc2d1d1953c961b1efeff79fa
+SIZE (rubygem/bundler-0.7.0.gem) = 22016
diff --git a/sysutils/rubygem-bundler/pkg-descr b/sysutils/rubygem-bundler/pkg-descr
new file mode 100644
index 000000000000..1177ebe48483
--- /dev/null
+++ b/sysutils/rubygem-bundler/pkg-descr
@@ -0,0 +1,7 @@
+Bundler is a tool that manages gem dependencies for your ruby application. It
+takes a gem manifest file and is able to fetch, download, and install the gems
+and all child dependencies specified in this manifest. It can manage any update
+to the gem manifest file and update the bundled gems accordingly. It also
+letsyou run any ruby code in context of the bundled gem environment.
+
+WWW: http://github.com/wycats/bundler