git: e43bd270c10d - main - www/rubygem-rails-settings-cached-rails61: New port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 19 Nov 2022 21:59:17 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=e43bd270c10de35b6fb8cba45f95a5ad16f3b3f4 commit e43bd270c10de35b6fb8cba45f95a5ad16f3b3f4 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2022-11-19 21:57:21 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2022-11-19 21:59:09 +0000 www/rubygem-rails-settings-cached-rails61: New port Rails-settings-cached is a settings plugin that makes managing a table of global key-value pairs easy. Think of it like a global hash stored in your database that uses simple ActiveRecord-like methods for manipulation. You can keep track of any global setting that you do not want to hard code into your rails application. You can store any kind of object including strings, numbers, and arrays. Sponsored by: Nepustil --- www/Makefile | 1 + www/rubygem-rails-settings-cached-rails61/Makefile | 20 ++++++++++++++++++++ www/rubygem-rails-settings-cached-rails61/distinfo | 3 +++ www/rubygem-rails-settings-cached-rails61/pkg-descr | 7 +++++++ 4 files changed, 31 insertions(+) diff --git a/www/Makefile b/www/Makefile index cebc6846caa9..3b7af616a3b7 100644 --- a/www/Makefile +++ b/www/Makefile @@ -2074,6 +2074,7 @@ SUBDIR += rubygem-rails-settings-cached SUBDIR += rubygem-rails-settings-cached-rails5 SUBDIR += rubygem-rails-settings-cached-rails50 + SUBDIR += rubygem-rails-settings-cached-rails61 SUBDIR += rubygem-rails4 SUBDIR += rubygem-rails5 SUBDIR += rubygem-rails50 diff --git a/www/rubygem-rails-settings-cached-rails61/Makefile b/www/rubygem-rails-settings-cached-rails61/Makefile new file mode 100644 index 000000000000..ab46411fa32a --- /dev/null +++ b/www/rubygem-rails-settings-cached-rails61/Makefile @@ -0,0 +1,20 @@ +PORTNAME= rails-settings-cached +PORTVERSION= 0.7.2 +CATEGORIES= www rubygems +MASTER_SITES= RG +PKGNAMESUFFIX= -rails61 + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Rails settings plugin for easily managing key-value pairs table +WWW= https://github.com/huacnlee/rails-settings-cached + +LICENSE= MIT + +RUN_DEPENDS= rubygem-rails61>=0:www/rubygem-rails61 + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/www/rubygem-rails-settings-cached-rails61/distinfo b/www/rubygem-rails-settings-cached-rails61/distinfo new file mode 100644 index 000000000000..7b6b79c02348 --- /dev/null +++ b/www/rubygem-rails-settings-cached-rails61/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1539103492 +SHA256 (rubygem/rails-settings-cached-0.7.2.gem) = 90f87c6e1fa2b625babb93d368225278aaf96f1c0a63122f5943f9305bf7c561 +SIZE (rubygem/rails-settings-cached-0.7.2.gem) = 10240 diff --git a/www/rubygem-rails-settings-cached-rails61/pkg-descr b/www/rubygem-rails-settings-cached-rails61/pkg-descr new file mode 100644 index 000000000000..e29538d67680 --- /dev/null +++ b/www/rubygem-rails-settings-cached-rails61/pkg-descr @@ -0,0 +1,7 @@ +Rails-settings-cached is a settings plugin that makes managing a table of global +key-value pairs easy. Think of it like a global hash stored in your database +that uses simple ActiveRecord-like methods for manipulation. + +You can keep track of any global setting that you do not want to hard code into +your rails application. You can store any kind of object including strings, +numbers, and arrays.