aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-05-16 06:13:38 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-05-16 06:21:49 +0000
commitf11642d0b116a07a550d7f9dc135332967b2dc67 (patch)
tree5e96ee1c970290779f06f5bcdca63ab48bda42c6
parent7f3332f7c42b247405048a0e920970aaa91554ef (diff)
devel/rubygem-figaro: Add rubygem-figaro 1.2.0
Figaro provides simple, Heroku-friendly Rails app configuration using ENV and a single YAML file. Figaro was written to make it easy to securely configure Rails applications. Configuration values often include sensitive information. Figaro strives to be secure by default by encouraging a convention that keeps configuration out of Git.
-rw-r--r--devel/Makefile1
-rw-r--r--devel/rubygem-figaro/Makefile21
-rw-r--r--devel/rubygem-figaro/distinfo3
-rw-r--r--devel/rubygem-figaro/pkg-descr8
4 files changed, 33 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 9c88b59b98fa..340d9dd40643 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -6972,6 +6972,7 @@
SUBDIR += rubygem-fiber-annotation
SUBDIR += rubygem-fiber-local
SUBDIR += rubygem-fiddle
+ SUBDIR += rubygem-figaro
SUBDIR += rubygem-file-tail
SUBDIR += rubygem-filesize
SUBDIR += rubygem-fileutils
diff --git a/devel/rubygem-figaro/Makefile b/devel/rubygem-figaro/Makefile
new file mode 100644
index 000000000000..29ae8747a02b
--- /dev/null
+++ b/devel/rubygem-figaro/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= figaro
+PORTVERSION= 1.2.0
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Simple, Heroku-friendly Rails app configuration using ENV and a single YAML file
+WWW= https://github.com/laserlemon/figaro
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS= rubygem-thor>=0.14.0<2:devel/rubygem-thor
+
+USES= gem
+
+NO_ARCH= yes
+
+PLIST_FILES= bin/figaro
+
+.include <bsd.port.mk>
diff --git a/devel/rubygem-figaro/distinfo b/devel/rubygem-figaro/distinfo
new file mode 100644
index 000000000000..db2fa4615052
--- /dev/null
+++ b/devel/rubygem-figaro/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1714227804
+SHA256 (rubygem/figaro-1.2.0.gem) = 5c035fec76e597226e591ce4501aba37e059013d87ab47a1de5ab3cd0649e2fa
+SIZE (rubygem/figaro-1.2.0.gem) = 18944
diff --git a/devel/rubygem-figaro/pkg-descr b/devel/rubygem-figaro/pkg-descr
new file mode 100644
index 000000000000..9fdd40739e61
--- /dev/null
+++ b/devel/rubygem-figaro/pkg-descr
@@ -0,0 +1,8 @@
+Figaro provides simple, Heroku-friendly Rails app configuration using ENV and a
+single YAML file.
+
+Figaro was written to make it easy to securely configure Rails applications.
+
+Configuration values often include sensitive information. Figaro strives to be
+secure by default by encouraging a convention that keeps configuration out of
+Git.