kaal-hanami 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.
- checksums.yaml +4 -4
- data/README.md +4 -3
- data/lib/kaal/hanami/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5eb7f6bfd10c50d917f398cb8dc3bb86890287b089dd0acb5a2917057c734c9
|
|
4
|
+
data.tar.gz: cfa820d9b97bd7cc987886211cbb63fe95022072dc7c8f3f68288e98a645f859
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b150d1fac759cdc90be18ce0e5c3ff695ce3f1d356cc0bc76eb6c34f7081ed06d9e30fe443bad4c77f851845c35b2225f78b3263114c409713d409dd16393af
|
|
7
|
+
data.tar.gz: 0f18e4f660296296d41fb3829dc0ba8b928ee15410033789f2a46e3621c45390f5215fb2a6714b3821cc0f244edd6d91fcc5666149aafce510acf8b8b7634acf
|
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 Hanami app
|
|
41
42
|
|
|
42
43
|
## Minimal Hanami
|
|
43
44
|
|
data/lib/kaal/hanami/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kaal-hanami
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nitesh Purohit
|
|
@@ -36,14 +36,14 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.5.0
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - '='
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.
|
|
46
|
+
version: 0.5.0
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: rack
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|