Onapp::Engine

OnApp Background tasks manager

Installation

Add this line to your application's Gemfile:

gem 'onapp-engine', git: 'git@bitbucket.org:onappcore/onapp-engine.git',
                    tag: '<SOME-TAG>',
                    require: false

And then execute:

$ bundle

Diagnostics

bundle exec oe-diagnostics

Update gem version in Gemfiles

bundle exec oe-update-gem

Details in lib/onapp/engine/utils/diagnostics.rb

Release new version (RECOMMENDED way)

  1. Update CHANGELOG.md

  2. Run:

rake release

Manual release

  1. Update CHANGELOG.md

  2. Update version in lib/onapp/engine/version.rb

  3. Attach a tag

git tag v<VERSION>
  1. Push
git push origin HEAD v<VERSION>