diff --git a/devel/rubygem-activejob61/Makefile b/devel/rubygem-activejob61/Makefile index 643a6a7f4edc..10c3299662a8 100644 --- a/devel/rubygem-activejob61/Makefile +++ b/devel/rubygem-activejob61/Makefile @@ -1,28 +1,28 @@ # Created by: Johannes Jost Meixner PORTNAME= activejob -PORTVERSION= 6.1.4.1 +PORTVERSION= 6.1.4.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}: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 7ac028325588..3087df4b002d 100644 --- a/devel/rubygem-activejob61/distinfo +++ b/devel/rubygem-activejob61/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1632664508 -SHA256 (rubygem/activejob-6.1.4.1.gem) = 169e7cf2d9ecad34db8199c2da577e853c6a65523c9cd9177b3d2b3e4104ece0 -SIZE (rubygem/activejob-6.1.4.1.gem) = 32768 +TIMESTAMP = 1641046818 +SHA256 (rubygem/activejob-6.1.4.4.gem) = a4c3e27038b39ee8c2bc5f56afecf72975459f84e677f5cd26ca06c9a4b3c069 +SIZE (rubygem/activejob-6.1.4.4.gem) = 32768 diff --git a/devel/rubygem-activejob61/pkg-descr b/devel/rubygem-activejob61/pkg-descr index 9219e7ada1d9..0ec633698b76 100644 --- a/devel/rubygem-activejob61/pkg-descr +++ b/devel/rubygem-activejob61/pkg-descr @@ -1,19 +1,19 @@ 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. WWW: https://rubyonrails.org/ -WWW: https://github.com/rails/rails/tree/master/activejob +WWW: https://github.com/rails/rails/tree/main/activejob