diff --git a/devel/rubygem-activejob61/Makefile b/devel/rubygem-activejob61/Makefile index 6422562beaaf..43d078c9a7c9 100644 --- a/devel/rubygem-activejob61/Makefile +++ b/devel/rubygem-activejob61/Makefile @@ -1,27 +1,28 @@ PORTNAME= activejob -PORTVERSION= 6.1.6.1 +PORTVERSION= 6.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends -WWW= https://github.com/rails/rails/tree/main/activejob +WWW= https://github.com/rails/rails/tree/main/activejob \ + https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 \ +RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-globalid-rails61>=0.3.6:databases/rubygem-globalid-rails61 USES= cpe gem USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^6\.1\. .include diff --git a/devel/rubygem-activejob61/distinfo b/devel/rubygem-activejob61/distinfo index c18d5d806946..81f6d5415d22 100644 --- a/devel/rubygem-activejob61/distinfo +++ b/devel/rubygem-activejob61/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1657835561 -SHA256 (rubygem/activejob-6.1.6.1.gem) = 9efee4499d31aaaab73b843a09564d4a2aabcd51c2088361a92e08766ab0db65 -SIZE (rubygem/activejob-6.1.6.1.gem) = 32768 +TIMESTAMP = 1669058239 +SHA256 (rubygem/activejob-6.1.7.gem) = e5d2ac525b6be5ccf242534af504ea2c7b406fb5f7880495ce3c1407e749c415 +SIZE (rubygem/activejob-6.1.7.gem) = 32768 diff --git a/devel/rubygem-activejob61/pkg-descr b/devel/rubygem-activejob61/pkg-descr index dabb0b743759..9087f346d128 100644 --- a/devel/rubygem-activejob61/pkg-descr +++ b/devel/rubygem-activejob61/pkg-descr @@ -1,18 +1,16 @@ Active Job is a framework for declaring jobs and making them run on a variety of queuing backends. These jobs can be everything from regularly scheduled clean-ups, to billing charges, to mailings. Anything that can be chopped up into small units of work and run in parallel, really. It also serves as the backend for Action Mailer's #deliver_later functionality that makes it easy to turn any mailing into a job for running later. That's one of the most common jobs in a modern web application: sending emails outside of the request-response cycle, so the user doesn't have to wait on it. The main point is to ensure that all Rails apps will have a job infrastructure in place, even if it's in the form of an "immediate runner". We can then have framework features and other gems build on top of that, without having to worry about API differences between Delayed Job and Resque. Picking your queuing backend becomes more of an operational concern, then. And you'll be able to switch between them without having to rewrite your jobs. - -See also: https://rubyonrails.org/