aboutsummaryrefslogtreecommitdiff
path: root/databases/rubygem-activemodel80
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-01-02 16:27:58 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-01-02 16:27:58 +0000
commitddbf1a748991c9e9eb026ce3333b9d1f4cdabf31 (patch)
treeda4d8ebb51bdc27ef586d98599e30f828e3d67d2 /databases/rubygem-activemodel80
parent0031bf40890fa061cbd3f391f261911fd6ccc995 (diff)
Diffstat (limited to 'databases/rubygem-activemodel80')
-rw-r--r--databases/rubygem-activemodel80/Makefile23
-rw-r--r--databases/rubygem-activemodel80/distinfo3
-rw-r--r--databases/rubygem-activemodel80/pkg-descr7
3 files changed, 33 insertions, 0 deletions
diff --git a/databases/rubygem-activemodel80/Makefile b/databases/rubygem-activemodel80/Makefile
new file mode 100644
index 000000000000..5ce7aafef8ec
--- /dev/null
+++ b/databases/rubygem-activemodel80/Makefile
@@ -0,0 +1,23 @@
+PORTNAME= activemodel
+PORTVERSION= 8.0.1
+CATEGORIES= databases rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 80
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Toolkit for building modeling frameworks like Active Record
+WWW= https://github.com/rails/rails/tree/main/activemodel \
+ https://rubyonrails.org/
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS= rubygem-activesupport80>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport80
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^8\.0\.
+
+.include <bsd.port.mk>
diff --git a/databases/rubygem-activemodel80/distinfo b/databases/rubygem-activemodel80/distinfo
new file mode 100644
index 000000000000..5d1ffb69f8a9
--- /dev/null
+++ b/databases/rubygem-activemodel80/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1735802468
+SHA256 (rubygem/activemodel-8.0.1.gem) = f46292fd6dcc128e18d588854298a933fd9eb22544c412b414ec02821062dc78
+SIZE (rubygem/activemodel-8.0.1.gem) = 68608
diff --git a/databases/rubygem-activemodel80/pkg-descr b/databases/rubygem-activemodel80/pkg-descr
new file mode 100644
index 000000000000..9e0e982e3352
--- /dev/null
+++ b/databases/rubygem-activemodel80/pkg-descr
@@ -0,0 +1,7 @@
+Active Model provides a known set of interfaces for usage in model classes. They
+allow for Action Pack helpers to interact with non-Active Record models, for
+example. Active Model also helps with building custom ORMs for use outside of
+the Rails framework.
+
+Active Model provides a default module that implements the basic API required to
+integrate with Action Pack out of the box: ActiveModel::API.