quebert 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4e96fc6fb9bf3251e14d949b0fff1c41773627f
4
- data.tar.gz: df6e6597d8cd3f13a40a271a2f64d2c29c307b53
3
+ metadata.gz: '092fe902b44df8741932335a81bddb66d83a3c10'
4
+ data.tar.gz: 569db4e9d7261dfcb57a7a9314e161ed47928580
5
5
  SHA512:
6
- metadata.gz: 5e96e7f2092bfca4006c11fd07e20976ced92eaf998fa2e251c33e880d41da06adefcb1e0f6151a5e2f165388fdf03bc288ad30a45cc1cbbf709fd04333a5d41
7
- data.tar.gz: d6c793aad2d0b20f51bf38eb32bd40ba67f6536eb19956caa5ef6bcae8f53dc123941c35f885bffbfe2d3fe82edf6ba48fbe3b2081a1adc6ae897c6b28cd4a8c
6
+ metadata.gz: e1624571d30fe128568b7ac97b9264711101abf3c365ffeda6ad2cfa8831bcdeb8c90673e33eaec09936f11fa620a176fd37db338c46ba148180431c4519f0c6
7
+ data.tar.gz: b206f038082501fda2e54f26bea20b55c615e5b98b0b142cff928272dd67a0507996430906772d641e9f44976f2f93ec1cdf5c6a6a3a2aaa5cabc4031bc4a5a7
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.5
4
- - 2.3.1
5
- - 2.4.1
3
+ - 2.4.3
4
+ - 2.4.6
5
+ - 2.5.5
6
+ - 2.6.2
6
7
  before_install:
7
8
  - curl -L https://github.com/kr/beanstalkd/archive/v1.9.tar.gz | tar xz -C /tmp
8
9
  - cd /tmp/beanstalkd-1.9/
@@ -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
@@ -5,7 +5,7 @@ gemspec
5
5
 
6
6
  group :test do
7
7
  gem 'activerecord', '~> 4.0'
8
- gem 'sqlite3-ruby'
8
+ gem 'sqlite3', '~> 1.3.6'
9
9
  gem 'rspec', '~> 3.5'
10
10
  gem 'rb-fsevent'
11
11
  gem 'pry'
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.2.5`. Have a look at the `.travis.yml` configuration file to see all Ruby versions we support.
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} with args #{job.args.inspect}" }
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
@@ -1,3 +1,3 @@
1
1
  module Quebert
2
- VERSION = "3.2.1"
2
+ VERSION = "3.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quebert
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler