kaal-roda 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -3
  3. data/lib/kaal/roda/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63b98e312b2cb03226a195c6dffe239cabdd5e380d57801b0b2348d4f0c752cd
4
- data.tar.gz: 19d47df4d5ba23d17c25e82ae5524a118245a295d9affc54d7805a37330d2c61
3
+ metadata.gz: c9d669a3e79751f031953db4430fda547ccc8e570c8f11acb5ab7ea4137e672e
4
+ data.tar.gz: f96690361d2d3ef05e7f62690e721c80b592849ff54b765d87f7f9fb332b81ca
5
5
  SHA512:
6
- metadata.gz: '0988b21d2d825cebb420c16289db800dfa82cec6c8b8cd35fb824fe9dc813c7852577cd88761fdcb3f5ee850278449351fc75cafb48f088c597161e0ea1d58fa'
7
- data.tar.gz: cb5e89ba9f906e8570aa91acb207a800857ef7d2cbb0b0f03af923dcaf3baacb6f24d964d74c44625012048df591c4dc77cd00dc9a88401aaed40764f99b8001
6
+ metadata.gz: 13eb8bdfe6cbe98ef1fcbb14b5396ff0841b3c1599ed6287fd24110e1c18b6a7763021486ce36fe6e54cdc9971dc9af3742df9bbf54a55a1a354530ed6ebf5e7
7
+ data.tar.gz: 9c0cfefe345dd333dbe759f9e359884a98fa4169c3c744013a44e7b084899d51fcad0320f938bde31e2e8c6f8da28b61aacaa5ab57618121d64274974c528334
data/README.md CHANGED
@@ -25,9 +25,9 @@ gem 'sqlite3' # or pg / mysql2 for SQL
25
25
 
26
26
  If you use SQL persistence, create the Kaal tables using Sequel migrations. `kaal` exposes the Sequel migration templates for:
27
27
 
28
- - SQLite: `kaal_dispatches`, `kaal_locks`, `kaal_definitions`
29
- - PostgreSQL: `kaal_dispatches`, `kaal_definitions`
30
- - MySQL: `kaal_dispatches`, `kaal_definitions`
28
+ - SQLite: `kaal_dispatches`, `kaal_locks`, `kaal_definitions`, `kaal_delayed_jobs`
29
+ - PostgreSQL: `kaal_dispatches`, `kaal_definitions`, `kaal_delayed_jobs`
30
+ - MySQL: `kaal_dispatches`, `kaal_definitions`, `kaal_delayed_jobs`
31
31
 
32
32
  Your app should also provide `config/scheduler.yml`.
33
33
 
@@ -38,6 +38,7 @@ Your app should also provide `config/scheduler.yml`.
38
38
  - redis convenience wiring when the app passes a redis client
39
39
  - automatic SQL backend selection from the Sequel adapter unless the app passes `adapter:`
40
40
  - explicit lifecycle helpers so web processes do not implicitly start background scheduler threads
41
+ - the normal Kaal runtime API inside a Roda app
41
42
 
42
43
  ## Minimal Roda
43
44
 
@@ -6,6 +6,6 @@
6
6
  # LICENSE file in the root directory of this source tree.
7
7
  module Kaal
8
8
  module Roda
9
- VERSION = '0.4.0'
9
+ VERSION = '0.5.0'
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaal-roda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nitesh Purohit
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.4.0
19
+ version: 0.5.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.4.0
26
+ version: 0.5.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rack
29
29
  requirement: !ruby/object:Gem::Requirement