summaryrefslogtreecommitdiff
path: root/databases/rubygem-activerecord61
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2021-01-10 08:50:15 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2021-01-10 08:50:15 +0000
commit94b8f4168456ade1d36fb5a79a2c6f3d7076ebc0 (patch)
treea523911c15a671ecbd351fd43c04ca99fa5758a1 /databases/rubygem-activerecord61
parentAdd rubygem-activemodel61 6.1.0 (copied from rubygem-activemodel60) (diff)
Add rubygem-activerecord61 6.1.0 (copied from rubygem-activerecord60)
Diffstat (limited to 'databases/rubygem-activerecord61')
-rw-r--r--databases/rubygem-activerecord61/Makefile26
-rw-r--r--databases/rubygem-activerecord61/distinfo3
-rw-r--r--databases/rubygem-activerecord61/pkg-descr14
3 files changed, 43 insertions, 0 deletions
diff --git a/databases/rubygem-activerecord61/Makefile b/databases/rubygem-activerecord61/Makefile
new file mode 100644
index 000000000000..51934b9b2329
--- /dev/null
+++ b/databases/rubygem-activerecord61/Makefile
@@ -0,0 +1,26 @@
+# Created by: Johannes Meixner <johannes@perceivon.net>
+# $FreeBSD$
+
+PORTNAME= activerecord
+PORTVERSION= 6.1.0
+CATEGORIES= databases rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 61
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Object-relational mapping layer for Rails MVC Framework
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS= rubygem-activemodel61>=${PORTVERSION}:databases/rubygem-activemodel61 \
+ rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61
+
+USES= gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^6\.1\.
+
+.include <bsd.port.mk>
diff --git a/databases/rubygem-activerecord61/distinfo b/databases/rubygem-activerecord61/distinfo
new file mode 100644
index 000000000000..2721491e8368
--- /dev/null
+++ b/databases/rubygem-activerecord61/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609179772
+SHA256 (rubygem/activerecord-6.1.0.gem) = a8fe5e854039c950c896c7ede5bb6ed6a79ad1148a25f792457b7dafdce5e8a9
+SIZE (rubygem/activerecord-6.1.0.gem) = 425984
diff --git a/databases/rubygem-activerecord61/pkg-descr b/databases/rubygem-activerecord61/pkg-descr
new file mode 100644
index 000000000000..29c7987b2296
--- /dev/null
+++ b/databases/rubygem-activerecord61/pkg-descr
@@ -0,0 +1,14 @@
+Active Record connects classes to relational database tables to establish an
+almost zero-configuration persistence layer for applications. The library
+provides a base class that, when subclassed, sets up a mapping between the new
+class and an existing table in the database. In the context of an application,
+these classes are commonly referred to as models. Models can also be connected
+to other models; this is done by defining associations.
+
+Active Record relies heavily on naming in that it uses class and association
+names to establish mappings between respective database tables and foreign key
+columns. Although these mappings can be defined explicitly, it's recommended to
+follow naming conventions, especially when getting started with the library.
+
+WWW: https://rubyonrails.org/
+WWW: https://github.com/rails/rails/tree/master/activerecord