pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ruby-activejob60 devel/ruby-activejob60: add pac...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/aaa4b10847f2
branches:  trunk
changeset: 425260:aaa4b10847f2
user:      taca <taca%pkgsrc.org@localhost>
date:      Fri Mar 20 16:48:47 2020 +0000

description:
devel/ruby-activejob60: add package version 6.0.2.2

Add ruby-activejob60 package version 6.0.2.2.


Active Job is a framework for declaring jobs and making them run on a
variety of queueing 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.

This is for Ruby on Rails 6.0.

diffstat:

 devel/ruby-activejob60/DESCR    |  21 +++++++++++++++++
 devel/ruby-activejob60/Makefile |  21 +++++++++++++++++
 devel/ruby-activejob60/PLIST    |  49 +++++++++++++++++++++++++++++++++++++++++
 devel/ruby-activejob60/distinfo |   6 +++++
 4 files changed, 97 insertions(+), 0 deletions(-)

diffs (113 lines):

diff -r 8b477f29743d -r aaa4b10847f2 devel/ruby-activejob60/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-activejob60/DESCR      Fri Mar 20 16:48:47 2020 +0000
@@ -0,0 +1,21 @@
+Active Job is a framework for declaring jobs and making them run on a
+variety of queueing 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.
+
+This is for Ruby on Rails 6.0.
diff -r 8b477f29743d -r aaa4b10847f2 devel/ruby-activejob60/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-activejob60/Makefile   Fri Mar 20 16:48:47 2020 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2020/03/20 16:48:47 taca Exp $
+
+DISTNAME=      activejob-${RAILS_VERSION}
+PKGNAME=       ${RUBY_PKGPREFIX}-activejob${RUBY_RAILS}-${RAILS_VERSION}
+CATEGORIES=    devel
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://www.rubyonrails.org/
+COMMENT=       Job classes that can be run by a variety of queueing backends
+LICENSE=       mit
+
+DEPENDS+=      ${RUBY_ACTIVESUPPORT_DEPENDS}
+DEPENDS+=      ${RUBY_PKGPREFIX}-globalid>=0.3.6:../../devel/ruby-globalid
+
+USE_LANGUAGES= # none
+
+RUBY_RAILS_ACCEPTED=   60
+RUBY_RAILS_STRICT_DEP= yes
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 8b477f29743d -r aaa4b10847f2 devel/ruby-activejob60/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-activejob60/PLIST      Fri Mar 20 16:48:47 2020 +0000
@@ -0,0 +1,49 @@
+@comment $NetBSD: PLIST,v 1.1 2020/03/20 16:48:47 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/MIT-LICENSE
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/lib/active_job.rb
+${GEM_LIBDIR}/lib/active_job/arguments.rb
+${GEM_LIBDIR}/lib/active_job/base.rb
+${GEM_LIBDIR}/lib/active_job/callbacks.rb
+${GEM_LIBDIR}/lib/active_job/configured_job.rb
+${GEM_LIBDIR}/lib/active_job/core.rb
+${GEM_LIBDIR}/lib/active_job/enqueuing.rb
+${GEM_LIBDIR}/lib/active_job/exceptions.rb
+${GEM_LIBDIR}/lib/active_job/execution.rb
+${GEM_LIBDIR}/lib/active_job/gem_version.rb
+${GEM_LIBDIR}/lib/active_job/logging.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/async_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/backburner_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/delayed_job_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/inline_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/que_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/queue_classic_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/resque_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/sidekiq_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/sneakers_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/sucker_punch_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_adapters/test_adapter.rb
+${GEM_LIBDIR}/lib/active_job/queue_name.rb
+${GEM_LIBDIR}/lib/active_job/queue_priority.rb
+${GEM_LIBDIR}/lib/active_job/railtie.rb
+${GEM_LIBDIR}/lib/active_job/serializers.rb
+${GEM_LIBDIR}/lib/active_job/serializers/date_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/date_time_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/duration_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/object_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/symbol_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/time_serializer.rb
+${GEM_LIBDIR}/lib/active_job/serializers/time_with_zone_serializer.rb
+${GEM_LIBDIR}/lib/active_job/test_case.rb
+${GEM_LIBDIR}/lib/active_job/test_helper.rb
+${GEM_LIBDIR}/lib/active_job/timezones.rb
+${GEM_LIBDIR}/lib/active_job/translation.rb
+${GEM_LIBDIR}/lib/active_job/version.rb
+${GEM_LIBDIR}/lib/rails/generators/job/job_generator.rb
+${GEM_LIBDIR}/lib/rails/generators/job/templates/application_job.rb.tt
+${GEM_LIBDIR}/lib/rails/generators/job/templates/job.rb.tt
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff -r 8b477f29743d -r aaa4b10847f2 devel/ruby-activejob60/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-activejob60/distinfo   Fri Mar 20 16:48:47 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/03/20 16:48:47 taca Exp $
+
+SHA1 (activejob-6.0.2.2.gem) = db7b98cfe0e015b7f5cd0dda13f2d9df0cd44201
+RMD160 (activejob-6.0.2.2.gem) = 6efd0f27e6c1bd4d314cf3a080fd438997a22854
+SHA512 (activejob-6.0.2.2.gem) = 8feb4e528232eda4200d771cd12c5e85538d16fce2e0354b6c7dc952930a5c97207c6d54a466ac5b2db6599e8419793c6666cebd54da0f9b183f3b358afbc1c3
+Size (activejob-6.0.2.2.gem) = 31232 bytes



Home | Main Index | Thread Index | Old Index