Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
active_scheduler is a gem to take a standard schedule one would use with resque scheduler and wraps it to work with ActiveJob.
Currently only Resque is supported, but pull requests to add other queues (sidekiq, etc) would be welcomed!
Add active_scheduler
to your Gemfile.
In your Resque initializer:
require 'resque/server'
require 'resque/scheduler/server'
require 'active_scheduler'
# ... Set up your Resque ...
...
yaml_schedule = YAML.load_file("#{Rails.root}/config/resque_schedule.yaml") || {}
wrapped_schedule = ActiveScheduler::ResqueWrapper.wrap yaml_schedule
Resque.schedule = wrapped_schedule
simple_job:
every: "30s"
queue: "simple"
class: "SimpleJob"
args:
-
description: "It's a simple job."
ThisIsTheClass:
cron: "* * * *"
queue: 'cronny'
description: "Will call the ThisIsTheClass class"
Only classes that are descended from ActiveJob::Base
will be wrapped
If you have a job class that uses named arguments you can specify that. args
should be a hash nested in the array and you need to add the named_args key.
simple_job:
every: "30s"
queue: "simple"
class: "SimpleJob"
args:
- foo: 1
bar: 2
description: "It's a simple job."
named_args: true
MIT
FAQs
Unknown package
We found that active_scheduler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.