quebert 3.2.1 → 3.3.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/.travis.yml +4 -3
- data/CHANGELOG.md +5 -0
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/lib/quebert/controller/beanstalk.rb +1 -1
- data/lib/quebert/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '092fe902b44df8741932335a81bddb66d83a3c10'
|
4
|
+
data.tar.gz: 569db4e9d7261dfcb57a7a9314e161ed47928580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1624571d30fe128568b7ac97b9264711101abf3c365ffeda6ad2cfa8831bcdeb8c90673e33eaec09936f11fa620a176fd37db338c46ba148180431c4519f0c6
|
7
|
+
data.tar.gz: b206f038082501fda2e54f26bea20b55c615e5b98b0b142cff928272dd67a0507996430906772d641e9f44976f2f93ec1cdf5c6a6a3a2aaa5cabc4031bc4a5a7
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 3.3.0
|
2
|
+
|
3
|
+
* Remove job argument log output. Job authors are expected to use logs if they find them necessary for their job execution. However, the default behavior has changed to no longer support this by default.
|
4
|
+
* Remove support for EOS/EOL ruby versions beyond 2.4.
|
5
|
+
|
1
6
|
## 3.2.1
|
2
7
|
|
3
8
|
* Fix bug with low priority constant value
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -36,7 +36,7 @@ There are two ways to enqueue jobs with Quebert: through the Job itself, provide
|
|
36
36
|
### Supported Ruby Versions
|
37
37
|
|
38
38
|
Quebert officially is supported to run on the currently supported versions of MRI.
|
39
|
-
This includes versions >= `2.
|
39
|
+
This includes versions >= `2.4.3`. Have a look at the `.travis.yml` configuration file to see all Ruby versions we support.
|
40
40
|
|
41
41
|
### Jobs
|
42
42
|
|
@@ -22,7 +22,7 @@ module Quebert
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def perform
|
25
|
-
logger.error(job) { "Performing #{job.class.name}
|
25
|
+
logger.error(job) { "Performing #{job.class.name}." }
|
26
26
|
logger.error(job) { "Beanstalk Job Stats: #{beanstalk_job.stats.inspect}" }
|
27
27
|
|
28
28
|
result = false
|
data/lib/quebert/version.rb
CHANGED