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:
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
|
@ -780,6 +780,7 @@
|
|||
SUBDIR += rsyslog8
|
||||
SUBDIR += rsyslog8-devel
|
||||
SUBDIR += rtty
|
||||
SUBDIR += rubgem-bundler_ext
|
||||
SUBDIR += ruby-quota
|
||||
SUBDIR += rubygem-SyslogLogger
|
||||
SUBDIR += rubygem-backup
|
||||
|
|
21
sysutils/rubgem-bundler_ext/Makefile
Normal file
21
sysutils/rubgem-bundler_ext/Makefile
Normal 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>
|
2
sysutils/rubgem-bundler_ext/distinfo
Normal file
2
sysutils/rubgem-bundler_ext/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (rubygem/bundler_ext-0.4.0.gem) = e9cdd561e3d07331755220fe39308881a278058b1bc66637c06c3993a7ecd37f
|
||||
SIZE (rubygem/bundler_ext-0.4.0.gem) = 13312
|
7
sysutils/rubgem-bundler_ext/pkg-descr
Normal file
7
sysutils/rubgem-bundler_ext/pkg-descr
Normal 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
|
Loading…
Reference in a new issue