sidekiq-cron 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -7
- data/README.md +16 -8
- data/lib/sidekiq/cron/job.rb +102 -89
- data/lib/sidekiq/cron/launcher.rb +7 -9
- data/lib/sidekiq/cron/poller.rb +9 -12
- data/lib/sidekiq/cron/schedule_loader.rb +12 -4
- data/lib/sidekiq/cron/support.rb +0 -1
- data/lib/sidekiq/cron/version.rb +1 -1
- data/lib/sidekiq/cron/web_extension.rb +6 -9
- data/lib/sidekiq/options.rb +18 -0
- data/sidekiq-cron.gemspec +5 -7
- data/test/integration/performance_test.rb +1 -1
- data/test/test_helper.rb +1 -0
- data/test/unit/fixtures/schedule_array.yml +13 -0
- data/test/unit/fixtures/schedule_hash.yml +12 -0
- data/test/unit/fixtures/schedule_string.yml +1 -0
- data/test/unit/job_test.rb +114 -20
- data/test/unit/poller_test.rb +6 -6
- data/test/unit/schedule_loader_test.rb +45 -0
- data/test/unit/web_extension_test.rb +2 -2
- metadata +10 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq-cron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ondrej Bartas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fugit
|
@@ -136,7 +136,8 @@ dependencies:
|
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0.21'
|
139
|
-
description: Enables to set jobs to be run in specified time (using CRON notation
|
139
|
+
description: Enables to set jobs to be run in specified time (using CRON notation
|
140
|
+
or natural language)
|
140
141
|
email: ondrej@bartas.cz
|
141
142
|
executables: []
|
142
143
|
extensions: []
|
@@ -167,11 +168,16 @@ files:
|
|
167
168
|
- lib/sidekiq/cron/views/cron_show.erb
|
168
169
|
- lib/sidekiq/cron/web.rb
|
169
170
|
- lib/sidekiq/cron/web_extension.rb
|
171
|
+
- lib/sidekiq/options.rb
|
170
172
|
- sidekiq-cron.gemspec
|
171
173
|
- test/integration/performance_test.rb
|
172
174
|
- test/test_helper.rb
|
175
|
+
- test/unit/fixtures/schedule_array.yml
|
176
|
+
- test/unit/fixtures/schedule_hash.yml
|
177
|
+
- test/unit/fixtures/schedule_string.yml
|
173
178
|
- test/unit/job_test.rb
|
174
179
|
- test/unit/poller_test.rb
|
180
|
+
- test/unit/schedule_loader_test.rb
|
175
181
|
- test/unit/web_extension_test.rb
|
176
182
|
homepage: https://github.com/ondrejbartas/sidekiq-cron
|
177
183
|
licenses:
|
@@ -195,5 +201,5 @@ requirements: []
|
|
195
201
|
rubygems_version: 3.1.4
|
196
202
|
signing_key:
|
197
203
|
specification_version: 4
|
198
|
-
summary:
|
204
|
+
summary: Scheduler/Cron for Sidekiq jobs
|
199
205
|
test_files: []
|