sidekiq-scheduler 1.2 → 1.2.1
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/lib/sidekiq-scheduler/version.rb +1 -1
- data/web/views/recurring_jobs.erb +31 -0
- metadata +2 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89128cc8f6345b6db994fc9e24c23624b7537568
|
|
4
|
+
data.tar.gz: 0955b9d3e50ac4761e53babc1e03e4e9c644aa82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5272d12de6b7daec945993b084b248e5012a6e9be086e7898be0188099cacd2ab2396d69763b6d8a08157bbbbd8bc12835799e9539a70d03bd57e08d4a413700
|
|
7
|
+
data.tar.gz: 3de9ac8f1d18016e27cb92800d30d05cca1920f38b13ef99c7534d81b37be900c8ea1796f6583b6822fe6830543e4ed8f0cf4a90fe95885fcd2627c2cdee59c3
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<h3>Recurring Jobs</h3>
|
|
2
|
+
|
|
3
|
+
<div class="table_container">
|
|
4
|
+
<table class="table table-hover table-bordered table-striped table-white">
|
|
5
|
+
<thead>
|
|
6
|
+
<tr>
|
|
7
|
+
<th>Name</th>
|
|
8
|
+
<th>Description</th>
|
|
9
|
+
<th>Interval</th>
|
|
10
|
+
<th>Class</th>
|
|
11
|
+
<th>Queue</th>
|
|
12
|
+
<th>Arguments</th>
|
|
13
|
+
</tr>
|
|
14
|
+
</thead>
|
|
15
|
+
|
|
16
|
+
<tbody>
|
|
17
|
+
<% @schedule.each do |name, job_spec| %>
|
|
18
|
+
<tr>
|
|
19
|
+
<td><%= name %></td>
|
|
20
|
+
<td><%= job_spec['description'] %></td>
|
|
21
|
+
<td><%= job_spec.fetch 'cron', job_spec['every'] %></td>
|
|
22
|
+
<td><%= job_spec['class'] %></td>
|
|
23
|
+
<td>
|
|
24
|
+
<a href="<%= root_path %>queues/<%= job_spec.fetch('queue', 'default') %>"><%= job_spec.fetch('queue', 'default') %></a>
|
|
25
|
+
</td>
|
|
26
|
+
<td><%= job_spec['args'] %></td>
|
|
27
|
+
</tr>
|
|
28
|
+
<% end %>
|
|
29
|
+
</tbody>
|
|
30
|
+
</table>
|
|
31
|
+
</div>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sidekiq-scheduler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Morton Jonuschat
|
|
@@ -18,9 +18,6 @@ dependencies:
|
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '3'
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: '2.12'
|
|
24
21
|
type: :runtime
|
|
25
22
|
prerelease: false
|
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,9 +25,6 @@ dependencies:
|
|
|
28
25
|
- - "~>"
|
|
29
26
|
- !ruby/object:Gem::Version
|
|
30
27
|
version: '3'
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '2.12'
|
|
34
28
|
- !ruby/object:Gem::Dependency
|
|
35
29
|
name: redis
|
|
36
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -212,6 +206,7 @@ files:
|
|
|
212
206
|
- test/support/direct_worker.rb
|
|
213
207
|
- test/support/my_worker.rb
|
|
214
208
|
- test/test_helper.rb
|
|
209
|
+
- web/views/recurring_jobs.erb
|
|
215
210
|
homepage: https://github.com/moove-it/sidekiq-scheduler
|
|
216
211
|
licenses:
|
|
217
212
|
- MIT
|