diff --git a/README.md b/README.md index 0bbf47a..7741759 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ Removes the logic for enqueuing the workers on Cron, just keeps the web UI Admin and the funcionality for enqueuing the workers manually from the Admin. +This repository is a fork of https://github.com/ondrejbartas/sidekiq-cron where it overwrites the Poller class in charge of enqueuing the workers automatically; +it also overwrites the Launcher so it should not make any call to the Poller (https://github.com/1debit/sidekiq-cron-web-admin/tree/master/lib/sidekiq/cron). + ## Installation Add this line to your application's Gemfile: @@ -18,6 +21,16 @@ Or install it yourself as: $ gem install sidekiq-cron-web-admin +## Development + +1. Clone this repository +2. Setup the .env file using the .env.example +3. Run `bundle` +4. Update the files at lib, and if needed to overwrite files from https://github.com/ondrejbartas/sidekiq-cron copy/paste the files into `lib/` and update them (see the examples https://github.com/1debit/sidekiq-cron-web-admin/tree/master/lib/sidekiq/cron) +5. Add tests using `test-unit` and run the tests: `bundle exec rake test` +6. Push the changes to the branch and create a PR + + ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/1debit/sidekiq-cron-web-admin. diff --git a/lib/sidekiq/cron/web/admin/version.rb b/lib/sidekiq/cron/web/admin/version.rb index ab834be..9581d99 100644 --- a/lib/sidekiq/cron/web/admin/version.rb +++ b/lib/sidekiq/cron/web/admin/version.rb @@ -2,7 +2,7 @@ module Sidekiq module Cron module Web module Admin - VERSION = '0.2.3'.freeze + VERSION = '0.2.4'.freeze end end end