head 1.3; access; symbols pkgsrc-2026Q1:1.3.0.8 pkgsrc-2026Q1-base:1.3 pkgsrc-2025Q4:1.3.0.6 pkgsrc-2025Q4-base:1.3 pkgsrc-2025Q3:1.3.0.4 pkgsrc-2025Q3-base:1.3 pkgsrc-2025Q2:1.3.0.2 pkgsrc-2025Q2-base:1.3 pkgsrc-2025Q1:1.2.0.2 pkgsrc-2025Q1-base:1.2; locks; strict; comment @# @; 1.3 date 2025.05.27.16.13.44; author taca; state Exp; branches; next 1.2; commitid mV2t5t7k0EjAXyWF; 1.2 date 2025.01.23.08.02.12; author wiz; state Exp; branches; next 1.1; commitid QrYzCdTa1vn3eAGF; 1.1 date 2025.01.02.07.06.21; author taca; state Exp; branches; next ; commitid wddE8ckegfBSASDF; desc @@ 1.3 log @Remove RUBY_VERSIONS_INCOMPATIBLE line which contains 31 only. @ text @# $NetBSD: Makefile,v 1.2 2025/01/23 08:02:12 wiz Exp $ DISTNAME= activejob-${RAILS_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-activejob${RUBY_RAILS}-${RAILS_VERSION} CATEGORIES= devel MAINTAINER= pkgsrc-users@@NetBSD.org 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= 80 RUBY_RAILS_STRICT_DEP= yes .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" @ 1.2 log @*: Rails 8.0 is not available for Ruby 3.1 @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.1 2025/01/02 07:06:21 taca Exp $ a19 2 RUBY_VERSIONS_INCOMPATIBLE= 31 @ 1.1 log @devel/ruby-activejob80: add package version 8.0.1 Active Job - Make work happen later 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. 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 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 8.0. @ text @d1 1 a1 1 # $NetBSD$ d20 2 @