git: 50e23bddce34 - main - databases/rubygem-activemodel81: Add rubygem-activemodel81 8.1.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Mon, 17 Nov 2025 21:07:34 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=50e23bddce341b59265e60fc825f0b00e54c3e7c

commit 50e23bddce341b59265e60fc825f0b00e54c3e7c
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-11-17 21:02:38 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-11-17 21:06:45 +0000

    databases/rubygem-activemodel81: Add rubygem-activemodel81 8.1.0
    
    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.
---
 databases/Makefile                        |  1 +
 databases/rubygem-activemodel81/Makefile  | 23 +++++++++++++++++++++++
 databases/rubygem-activemodel81/distinfo  |  3 +++
 databases/rubygem-activemodel81/pkg-descr |  7 +++++++
 4 files changed, 34 insertions(+)

diff --git a/databases/Makefile b/databases/Makefile
index 61d7ddc03f10..becd75883257 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -926,6 +926,7 @@
     SUBDIR += rubygem-activemodel71
     SUBDIR += rubygem-activemodel72
     SUBDIR += rubygem-activemodel80
+    SUBDIR += rubygem-activemodel81
     SUBDIR += rubygem-activerecord-explain-analyze
     SUBDIR += rubygem-activerecord-gitlab
     SUBDIR += rubygem-activerecord-import
diff --git a/databases/rubygem-activemodel81/Makefile b/databases/rubygem-activemodel81/Makefile
new file mode 100644
index 000000000000..5da63c09b97f
--- /dev/null
+++ b/databases/rubygem-activemodel81/Makefile
@@ -0,0 +1,23 @@
+PORTNAME=	activemodel
+PORTVERSION=	8.1.0
+CATEGORIES=	databases rubygems
+MASTER_SITES=	RG
+PKGNAMESUFFIX=	81
+
+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-activesupport81>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport81
+
+USES=		gem
+
+NO_ARCH=	yes
+
+PORTSCOUT=	limit:^8\.1\.
+
+.include <bsd.port.mk>
diff --git a/databases/rubygem-activemodel81/distinfo b/databases/rubygem-activemodel81/distinfo
new file mode 100644
index 000000000000..51e449d92bdb
--- /dev/null
+++ b/databases/rubygem-activemodel81/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1762526248
+SHA256 (rubygem/activemodel-8.1.0.gem) = 43aa66565a601483e6c614d02cb2090168c91a803ddb954e2b0ef24d22de745e
+SIZE (rubygem/activemodel-8.1.0.gem) = 70656
diff --git a/databases/rubygem-activemodel81/pkg-descr b/databases/rubygem-activemodel81/pkg-descr
new file mode 100644
index 000000000000..9e0e982e3352
--- /dev/null
+++ b/databases/rubygem-activemodel81/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.