mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
Add rubygem-activejob60 6.0.2.1 (copied from rubygem-activejob52)
This commit is contained in:
parent
a603f3577e
commit
3998ec9ae4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=525318
@ -5402,6 +5402,7 @@
|
||||
SUBDIR += rubygem-activejob5
|
||||
SUBDIR += rubygem-activejob50
|
||||
SUBDIR += rubygem-activejob52
|
||||
SUBDIR += rubygem-activejob60
|
||||
SUBDIR += rubygem-activemessaging
|
||||
SUBDIR += rubygem-activerecord-deprecated_finders
|
||||
SUBDIR += rubygem-activesupport4
|
||||
|
28
devel/rubygem-activejob60/Makefile
Normal file
28
devel/rubygem-activejob60/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# Created by: Johannes Jost Meixner <xmj@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activejob
|
||||
PORTVERSION= 6.0.2.1
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 60
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Job class declarations for a variety of queueing backends
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
|
||||
|
||||
BROKEN_RUBY24= yes
|
||||
|
||||
RUN_DEPENDS= rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60 \
|
||||
rubygem-globalid-rails60>=0.3.6:databases/rubygem-globalid-rails60
|
||||
|
||||
USES= gem
|
||||
USE_RUBY= yes
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
PORTSCOUT= limit:^6\.0\.
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/rubygem-activejob60/distinfo
Normal file
3
devel/rubygem-activejob60/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1577687166
|
||||
SHA256 (rubygem/activejob-6.0.2.1.gem) = 11dc8701c7d5b80572786e928e264f42cb1ab75b07957955f41d4d367074b0cd
|
||||
SIZE (rubygem/activejob-6.0.2.1.gem) = 31232
|
19
devel/rubygem-activejob60/pkg-descr
Normal file
19
devel/rubygem-activejob60/pkg-descr
Normal file
@ -0,0 +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
|
Loading…
Reference in New Issue
Block a user