Sha256: 171bd77664d99231f451a74435b0902ae18939deaae7bd824db5de155e7558cb
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
[![Build Status](https://travis-ci.org/discourse/mini_scheduler.svg?branch=master)](https://travis-ci.org/discourse/mini_scheduler) [![Gem Version](https://badge.fury.io/rb/mini_scheduler.svg)](https://rubygems.org/gems/mini_scheduler) # mini_scheduler MiniScheduler adds recurring jobs to [Sidekiq](https://sidekiq.org/). ## Installation Add this line to your application's Gemfile: ```ruby gem 'mini_scheduler' ``` And then execute: $ bundle Or install it yourself as: $ gem install mini_scheduler In a Rails application, create files needed in your application to configure mini_scheduler: bin/rails g mini_scheduler:install rake db:migrate An initializer is created named `config/initializers/mini_scheduler.rb` which lists all the configuration options. ## Usage Create jobs with a recurring schedule like this: ```ruby class MyHourlyJob include Sidekiq::Worker extend MiniScheduler::Schedule every 1.hour def execute(args) # some tasks end end ``` Options for schedules: * **every** followed by a duration in seconds, like "every 1.hour". * **daily at:** followed by a duration since midnight, like "daily at: 12.hours", to run only once per day at a specific time. To view the scheduled jobs, their history, and the schedule, go to sidekiq's web UI and look for the "Scheduler" tab at the top. ## How to reach us If you have questions about using mini_scheduler or found a problem, you can find us at https://meta.discourse.org.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mini_scheduler-0.9.2 | README.md |