que-scheduler 3.4.1 → 3.4.2
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 +7 -7
- data/lib/que/scheduler/scheduler_job.rb +2 -0
- data/lib/que/scheduler/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3dcdf3dc34be0c572a49822ddad6b35464ee30f4424e0823c04008ae0b4facb
|
4
|
+
data.tar.gz: d46bdd71340462e52ea918aea603cecf27786e9e014c49c25c1459bc6181b383
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1bf5bde9c9811a6675a7c3ac5ee983e47131ab9dda803f3961bbd272b64c4f7a79e601ffd5db671709ef36eb77e10552ad7c91b3719b0b51ac056d34565a23f
|
7
|
+
data.tar.gz: c60d779f6b2bc7e0f27d6ad8f09549d9a8767aca647ae0330f5e59f95b6a6d013537b34ed2bf1e290e2485843d9aa0a4018871deadf1352b57571b2380ce6629
|
data/README.md
CHANGED
@@ -162,13 +162,13 @@ up to a number, just migrate to that number with one line, and it will perform a
|
|
162
162
|
ie, This will perform all migrations necessary up to the latest version, skipping any already
|
163
163
|
performed.
|
164
164
|
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
165
|
+
```ruby
|
166
|
+
class CreateQueSchedulerSchema < ActiveRecord::Migration
|
167
|
+
def change
|
168
|
+
Que::Scheduler::Migrations.migrate!(version: 5)
|
169
|
+
end
|
170
|
+
end
|
171
|
+
```
|
172
172
|
|
173
173
|
The changes in past migrations were:
|
174
174
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: que-scheduler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Harry Lascelles
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -351,7 +351,7 @@ metadata:
|
|
351
351
|
changelog_uri: https://github.com/hlascelles/que-scheduler/blob/master/CHANGELOG.md
|
352
352
|
source_code_uri: https://github.com/hlascelles/que-scheduler/
|
353
353
|
bug_tracker_uri: https://github.com/hlascelles/que-scheduler/issues
|
354
|
-
post_install_message:
|
354
|
+
post_install_message:
|
355
355
|
rdoc_options: []
|
356
356
|
require_paths:
|
357
357
|
- lib
|
@@ -367,7 +367,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
367
367
|
version: '0'
|
368
368
|
requirements: []
|
369
369
|
rubygems_version: 3.0.3
|
370
|
-
signing_key:
|
370
|
+
signing_key:
|
371
371
|
specification_version: 4
|
372
372
|
summary: A cron scheduler for Que
|
373
373
|
test_files: []
|