Add rubygem-activerecord60 6.0.2.1 (copied from rubygem-activerecord52)

This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-02-05 18:40:02 +00:00
parent 34cc4a3353
commit 00725475f6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=525316
4 changed files with 46 additions and 0 deletions

View File

@ -905,6 +905,7 @@
SUBDIR += rubygem-activerecord5
SUBDIR += rubygem-activerecord50
SUBDIR += rubygem-activerecord52
SUBDIR += rubygem-activerecord60
SUBDIR += rubygem-after_commit_queue
SUBDIR += rubygem-amalgalite
SUBDIR += rubygem-arel

View File

@ -0,0 +1,28 @@
# Created by: Johannes Meixner <johannes@perceivon.net>
# $FreeBSD$
PORTNAME= activerecord
PORTVERSION= 6.0.2.1
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 60
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Object-relational mapping layer for Rails MVC Framework
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
BROKEN_RUBY24= yes
RUN_DEPENDS= rubygem-activemodel60>=${PORTVERSION}:databases/rubygem-activemodel60 \
rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60
USES= gem
USE_RUBY= yes
NO_ARCH= yes
PORTSCOUT= limit:^6\.0\.
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1577687162
SHA256 (rubygem/activerecord-6.0.2.1.gem) = 083928e6fda8b886f24c198d37a6e9e0a077c1bf178ae76668a973175b6b578b
SIZE (rubygem/activerecord-6.0.2.1.gem) = 406528

View File

@ -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