diff --git a/databases/rubygem-activerecord61/Makefile b/databases/rubygem-activerecord61/Makefile index f7a3f065c4d6..8e683d219202 100644 --- a/databases/rubygem-activerecord61/Makefile +++ b/databases/rubygem-activerecord61/Makefile @@ -1,24 +1,25 @@ PORTNAME= activerecord -PORTVERSION= 6.1.6.1 +PORTVERSION= 6.1.7 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework -WWW= https://github.com/rails/rails/tree/main/activerecord +WWW= https://github.com/rails/rails/tree/main/activerecord \ + https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-activemodel61>=${PORTVERSION}:databases/rubygem-activemodel61 \ - rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 +RUN_DEPENDS= rubygem-activemodel61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel61 \ + rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 USES= gem USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/databases/rubygem-activerecord61/distinfo b/databases/rubygem-activerecord61/distinfo index 79dbf3e051cc..f3039486c469 100644 --- a/databases/rubygem-activerecord61/distinfo +++ b/databases/rubygem-activerecord61/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1657835557 -SHA256 (rubygem/activerecord-6.1.6.1.gem) = 82f74804ab34ea549fd593e5ced68c32426564786127d2de9b933ba78467d0b0 -SIZE (rubygem/activerecord-6.1.6.1.gem) = 432640 +TIMESTAMP = 1669058235 +SHA256 (rubygem/activerecord-6.1.7.gem) = 52e4a2601bb41b87db2be68c3f62add64c4614b580f9b540131d7a3e028a5db7 +SIZE (rubygem/activerecord-6.1.7.gem) = 433152 diff --git a/databases/rubygem-activerecord61/pkg-descr b/databases/rubygem-activerecord61/pkg-descr index afdce63dcd89..2ec976f87967 100644 --- a/databases/rubygem-activerecord61/pkg-descr +++ b/databases/rubygem-activerecord61/pkg-descr @@ -1,13 +1,11 @@ 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. - -See also: https://rubyonrails.org/