bundler_ext is a simple library leveraging the Bundler Gemfile DSL to load gems

already on the system and managed by the systems package manager (like yum/apt)

WWW: https://github.com/bundlerext/bundler_ext
This commit is contained in:
Martin Matuska 2014-09-27 08:13:16 +00:00
parent 6d91b534f2
commit d982d1ec5d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369377
4 changed files with 31 additions and 0 deletions

View file

@ -780,6 +780,7 @@
SUBDIR += rsyslog8
SUBDIR += rsyslog8-devel
SUBDIR += rtty
SUBDIR += rubgem-bundler_ext
SUBDIR += ruby-quota
SUBDIR += rubygem-SyslogLogger
SUBDIR += rubygem-backup

View file

@ -0,0 +1,21 @@
# Created by: Martin Matuska <mm@FreeBSD.org>
# $FreeBSD$
PORTNAME= bundler_ext
PORTVERSION= 0.4.0
CATEGORIES= sysutils rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Loads gems installed on the system using Bundler Gemfile DSL
LICENSE= MIT
RUN_DEPENDS= rubygem-bundler>=1.7:${PORTSDIR}/sysutils/rubygem-bundler
BUILD_DEPENDS= rubygem-rspec>=3:${PORTSDIR}/devel/rubygem-rspec
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/bundler_ext-0.4.0.gem) = e9cdd561e3d07331755220fe39308881a278058b1bc66637c06c3993a7ecd37f
SIZE (rubygem/bundler_ext-0.4.0.gem) = 13312

View file

@ -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://gembundler.com