Project

perilune

0.0
No release in over a year
Perilune is a Rails Engine that allows you to define Task classes for procesing files and handles their processing on the background for you.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Perilune

Short description and motivation.

Usage

How to use my plugin.

Installation

Add this line to your application's Gemfile:

gem "perilune"

And then execute:

$ bundle

Or install it yourself as:

$ gem install perilune

Configuration

You can use diffrent queue name for cron job:

# frozen_string_literal: true

Perilune.configure do |config|
  config.queue_name = 'test'
end

Note - Perilune is using default as queue name.

Perilune using Redis as defualt driver for Trifle Stats. You can configure the driver for Trifle::Stats:

Perilune.configure do |config|
  config.stat_driver = Trifle::Stats::Driver::Postgres.new(
    ActiveRecord::Base.connection.instance_variable_get('@connection')
  )
end

You can find more driver here

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.