sidekiq 5.2.3 → 5.2.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0f67e98eb8e3fff8ee4d57f08d5668e41b320fa4
4
- data.tar.gz: a11f770fd95fd45b3c0be43beee5c83417811fd4
2
+ SHA256:
3
+ metadata.gz: 196f3dd99544e452ff05bef91694c5fad03709698b2f8db7003d68c06f052331
4
+ data.tar.gz: d99781e4c97a42b38c0cb9f46632190b941d8a332d763aeb4b92755848f94142
5
5
  SHA512:
6
- metadata.gz: 3e6739681028126924c049e41bbfcdc92bea0d1ee4fb965f4e332da4cca9f10352f5cf18e05345a843d19b6111510f55c88aa97f4e21585bf66b479b7ae2f9bc
7
- data.tar.gz: 07f0432c69395be2933f152acb09c8fa4fe43be104011df237b0b4db56073b4725eb3fa3073872376f09d072ea15608f79a32b3dc28104ba18665082ad64adf4
6
+ metadata.gz: 8cc76b2d418c6d9025aeede974085a8beb6e24d960a7dc01890ab8233081c99b3bf929411f7605f47f8adeaac034760f74bdb7d10e186dd2ba9b6200e3e5e24e
7
+ data.tar.gz: e0b6469801595ed80c059a73af86e6fc8d5092666af399d64cec4fc0e7bc0b4fd1a6f0547767540e680050a56c10afbe36388a01a44bb81745e1c57ef6a99954
data/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  .ruby-version
3
3
  tags
4
4
  Gemfile.lock
5
+ gemfiles/*.lock
5
6
  *.swp
6
7
  dump.rdb
7
8
  .rbx
@@ -11,3 +12,4 @@ vendor/
11
12
  .sass-cache/
12
13
  tmp/
13
14
  pkg/*.gem
15
+ .byebug_history
@@ -4,11 +4,14 @@ cache: bundler
4
4
  services:
5
5
  - redis-server
6
6
  before_install:
7
- - gem install bundler
8
- - gem update bundler
7
+ - gem update --system
8
+ gemfile:
9
+ - gemfiles/rails_4.gemfile
10
+ - gemfiles/rails_5.gemfile
11
+ bundler_args: --without development load_test
9
12
  rvm:
10
- - 2.2.10
11
13
  - 2.3.7
12
14
  - 2.4.4
13
15
  - 2.5.1
14
- - jruby-9.1.17.0
16
+ - 2.6.0
17
+ - jruby
@@ -0,0 +1,9 @@
1
+ appraise "rails-4" do
2
+ gem "rails", "~> 4.2"
3
+ gem 'activerecord-jdbcsqlite3-adapter', '< 50', platforms: :jruby
4
+ end
5
+
6
+ appraise "rails-5" do
7
+ gem "rails", "~> 5.2"
8
+ gem 'activerecord-jdbcsqlite3-adapter', '>= 50', platforms: :jruby
9
+ end
data/Changes.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
+ 5.2.4
6
+ ---------
7
+
8
+ - Add warnings for various deprecations and changes coming in Sidekiq 6.0.
9
+ See the 6-0 branch. [#4056]
10
+ - Various improvements to the Sidekiq test suite and coverage [#4026, #4039, Tensho]
11
+
5
12
  5.2.3
6
13
  ---------
7
14
 
@@ -4,9 +4,10 @@
4
4
 
5
5
  Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
6
6
 
7
- HEAD
7
+ 1.7.2
8
8
  -------------
9
9
 
10
+ - Add PT and JA translations, see issues [#3949](https://github.com/mperham/sidekiq/issues/3949) and [#3951](https://github.com/mperham/sidekiq/issues/3951) to add your own language.
10
11
  - Fix elapsed time calculations to use monotonic clock [#4000, sj26]
11
12
  - Fix edge case where flapping leadership would cause old periodic
12
13
  jobs to be fired once [#3974]
data/Gemfile CHANGED
@@ -1,14 +1,29 @@
1
1
  source 'https://rubygems.org'
2
+
2
3
  gemspec
3
4
 
4
- # load testing
5
- #gem "hiredis"
6
- #gem 'toxiproxy'
5
+ gem 'rake'
6
+ gem 'redis-namespace'
7
+ gem 'rails', '~> 5.2'
8
+ gem 'sqlite3', platforms: :ruby
9
+ gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby
10
+
11
+ group :development do
12
+ gem 'appraisal'
13
+ end
7
14
 
8
15
  group :test do
9
- gem 'rails', '>= 5.0.1'
10
16
  gem 'minitest'
11
- gem 'rake'
12
- gem 'redis-namespace'
17
+ gem 'minitest-focus'
18
+ gem 'minitest-reporters'
13
19
  gem 'simplecov'
14
20
  end
21
+
22
+ group :development, :test do
23
+ gem 'pry-byebug', platforms: :mri
24
+ end
25
+
26
+ group :load_test do
27
+ gem 'hiredis'
28
+ gem 'toxiproxy'
29
+ end
@@ -7,7 +7,8 @@ Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how t
7
7
  HEAD
8
8
  ---------
9
9
 
10
- - Add Japanese and Russian translations, see [issue #3951](https://github.com/mperham/sidekiq/issues/3951) to add your own language
10
+ - Better handling of invalid job JSON by reliable scheduler [#4053]
11
+ - Added ZH, PT, JA and RU translations, see issues [#3949](https://github.com/mperham/sidekiq/issues/3949) and [#3951](https://github.com/mperham/sidekiq/issues/3951) to add your own language.
11
12
 
12
13
  4.0.4
13
14
  ---------
data/Rakefile CHANGED
@@ -1,8 +1,9 @@
1
1
  require 'bundler/gem_tasks'
2
2
  require 'rake/testtask'
3
+
3
4
  Rake::TestTask.new(:test) do |test|
4
5
  test.warning = true
5
6
  test.pattern = 'test/**/test_*.rb'
6
7
  end
7
8
 
8
- task :default => :test
9
+ task default: :test
@@ -0,0 +1,31 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake"
6
+ gem "redis-namespace"
7
+ gem "rails", "~> 4.2"
8
+ gem "sqlite3", platforms: :ruby
9
+ gem "activerecord-jdbcsqlite3-adapter", "< 50", platforms: :jruby
10
+
11
+ group :development do
12
+ gem "appraisal"
13
+ end
14
+
15
+ group :test do
16
+ gem "minitest"
17
+ gem "minitest-focus"
18
+ gem "minitest-reporters"
19
+ gem "simplecov"
20
+ end
21
+
22
+ group :development, :test do
23
+ gem "pry-byebug", platforms: :mri
24
+ end
25
+
26
+ group :load_test do
27
+ gem "hiredis"
28
+ gem "toxiproxy"
29
+ end
30
+
31
+ gemspec path: "../"
@@ -0,0 +1,31 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake"
6
+ gem "redis-namespace"
7
+ gem "rails", "~> 5.2"
8
+ gem "sqlite3", platforms: :ruby
9
+ gem "activerecord-jdbcsqlite3-adapter", ">= 50", platforms: :jruby
10
+
11
+ group :development do
12
+ gem "appraisal"
13
+ end
14
+
15
+ group :test do
16
+ gem "minitest"
17
+ gem "minitest-focus"
18
+ gem "minitest-reporters"
19
+ gem "simplecov"
20
+ end
21
+
22
+ group :development, :test do
23
+ gem "pry-byebug", platforms: :mri
24
+ end
25
+
26
+ group :load_test do
27
+ gem "hiredis"
28
+ gem "toxiproxy"
29
+ end
30
+
31
+ gemspec path: "../"
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'sidekiq/version'
3
4
  fail "Sidekiq #{Sidekiq::VERSION} does not support Ruby versions below 2.2.2." if RUBY_PLATFORM != 'java' && Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
4
5
 
@@ -56,6 +57,7 @@ module Sidekiq
56
57
  def self.options
57
58
  @options ||= DEFAULTS.dup
58
59
  end
60
+
59
61
  def self.options=(opts)
60
62
  @options = opts
61
63
  end
@@ -9,6 +9,7 @@ require 'fileutils'
9
9
 
10
10
  require 'sidekiq'
11
11
  require 'sidekiq/util'
12
+ require 'sidekiq/launcher'
12
13
 
13
14
  module Sidekiq
14
15
  class CLI
@@ -23,23 +24,13 @@ module Sidekiq
23
24
  proc { |me, data| "stopping" if me.stopping? },
24
25
  ]
25
26
 
26
- # Used for CLI testing
27
- attr_accessor :code
28
27
  attr_accessor :launcher
29
28
  attr_accessor :environment
30
29
 
31
- def initialize
32
- @code = nil
33
- end
34
-
35
- def parse(args=ARGV)
36
- @code = nil
37
-
30
+ def parse(args = ARGV)
38
31
  setup_options(args)
39
32
  initialize_logger
40
33
  validate!
41
- daemonize
42
- write_pid
43
34
  end
44
35
 
45
36
  def jruby?
@@ -50,8 +41,10 @@ module Sidekiq
50
41
  # global process state irreversibly. PRs which improve the
51
42
  # test coverage of Sidekiq::CLI are welcomed.
52
43
  def run
44
+ daemonize if options[:daemon]
45
+ write_pid
53
46
  boot_system
54
- print_banner
47
+ print_banner if environment == 'development' && $stdout.tty?
55
48
 
56
49
  self_read, self_write = IO.pipe
57
50
  sigs = %w(INT TERM TTIN TSTP)
@@ -79,6 +72,7 @@ module Sidekiq
79
72
  # fire startup and start multithreading.
80
73
  ver = Sidekiq.redis_info['redis_version']
81
74
  raise "You are using Redis v#{ver}, Sidekiq requires Redis v2.8.0 or greater" if ver < '2.8'
75
+ logger.warn "Sidekiq 6.0 will require Redis 4.0+, you are using Redis v#{ver}" if ver < '4'
82
76
 
83
77
  # Since the user can pass us a connection pool explicitly in the initializer, we
84
78
  # need to verify the size is large enough or else Sidekiq's performance is dramatically slowed.
@@ -99,11 +93,14 @@ module Sidekiq
99
93
  logger.debug { "Client Middleware: #{Sidekiq.client_middleware.map(&:klass).join(', ')}" }
100
94
  logger.debug { "Server Middleware: #{Sidekiq.server_middleware.map(&:klass).join(', ')}" }
101
95
 
96
+ launch(self_read)
97
+ end
98
+
99
+ def launch(self_read)
102
100
  if !options[:daemon]
103
101
  logger.info 'Starting processing, hit Ctrl-C to stop'
104
102
  end
105
103
 
106
- require 'sidekiq/launcher'
107
104
  @launcher = Sidekiq::Launcher.new(options)
108
105
 
109
106
  begin
@@ -185,23 +182,15 @@ module Sidekiq
185
182
  private
186
183
 
187
184
  def print_banner
188
- # Print logo and banner for development
189
- if environment == 'development' && $stdout.tty?
190
- puts "\e[#{31}m"
191
- puts Sidekiq::CLI.banner
192
- puts "\e[0m"
193
- end
185
+ puts "\e[#{31}m"
186
+ puts Sidekiq::CLI.banner
187
+ puts "\e[0m"
194
188
  end
195
189
 
196
190
  def daemonize
197
- return unless options[:daemon]
198
-
199
191
  raise ArgumentError, "You really should set a logfile if you're going to daemonize" unless options[:logfile]
200
- files_to_reopen = []
201
- ObjectSpace.each_object(File) do |file|
202
- files_to_reopen << file unless file.closed?
203
- end
204
192
 
193
+ files_to_reopen = ObjectSpace.each_object(File).reject { |f| f.closed? }
205
194
  ::Process.daemon(true, true)
206
195
 
207
196
  files_to_reopen.each do |file|
@@ -239,15 +228,33 @@ module Sidekiq
239
228
  alias_method :☠, :exit
240
229
 
241
230
  def setup_options(args)
231
+ # parse CLI options
242
232
  opts = parse_options(args)
233
+
243
234
  set_environment opts[:environment]
244
235
 
245
- cfile = opts[:config_file]
246
- opts = parse_config(cfile).merge(opts) if cfile
236
+ # check config file presence
237
+ if opts[:config_file]
238
+ if opts[:config_file] && !File.exist?(opts[:config_file])
239
+ raise ArgumentError, "No such file #{opts[:config_file]}"
240
+ end
241
+ else
242
+ if opts[:require] && File.directory?(opts[:require])
243
+ %w[config/sidekiq.yml config/sidekiq.yml.erb].each do |filename|
244
+ path = File.expand_path(filename, opts[:require])
245
+ opts[:config_file] ||= path if File.exist?(path)
246
+ end
247
+ end
248
+ end
249
+
250
+ # parse config file options
251
+ opts = parse_config(opts[:config_file]).merge(opts) if opts[:config_file]
247
252
 
253
+ opts[:queues] = Array(opts[:queues]) << 'default' if opts[:queues].nil? || opts[:queues].empty?
248
254
  opts[:strict] = true if opts[:strict].nil?
249
- opts[:concurrency] = Integer(ENV["RAILS_MAX_THREADS"]) if !opts[:concurrency] && ENV["RAILS_MAX_THREADS"]
255
+ opts[:concurrency] = Integer(ENV["RAILS_MAX_THREADS"]) if opts[:concurrency].nil? && ENV["RAILS_MAX_THREADS"]
250
256
 
257
+ # merge with defaults
251
258
  options.merge!(opts)
252
259
  end
253
260
 
@@ -258,8 +265,6 @@ module Sidekiq
258
265
  def boot_system
259
266
  ENV['RACK_ENV'] = ENV['RAILS_ENV'] = environment
260
267
 
261
- raise ArgumentError, "#{options[:require]} does not exist" unless File.exist?(options[:require])
262
-
263
268
  if File.directory?(options[:require])
264
269
  require 'rails'
265
270
  if ::Rails::VERSION::MAJOR < 4
@@ -279,10 +284,7 @@ module Sidekiq
279
284
  end
280
285
  options[:tag] ||= default_tag
281
286
  else
282
- not_required_message = "#{options[:require]} was not required, you should use an explicit path: " +
283
- "./#{options[:require]} or /path/to/#{options[:require]}"
284
-
285
- require(options[:require]) || raise(ArgumentError, not_required_message)
287
+ require options[:require]
286
288
  end
287
289
  end
288
290
 
@@ -298,8 +300,6 @@ module Sidekiq
298
300
  end
299
301
 
300
302
  def validate!
301
- options[:queues] << 'default' if options[:queues].empty?
302
-
303
303
  if !File.exist?(options[:require]) ||
304
304
  (File.directory?(options[:require]) && !File.exist?("#{options[:require]}/config/application.rb"))
305
305
  logger.info "=================================================================="
@@ -325,6 +325,7 @@ module Sidekiq
325
325
 
326
326
  o.on '-d', '--daemon', "Daemonize process" do |arg|
327
327
  opts[:daemon] = arg
328
+ puts "WARNING: Daemonization mode will be removed in Sidekiq 6.0, see #4045. Please use a proper process supervisor to start and manage your services"
328
329
  end
329
330
 
330
331
  o.on '-e', '--environment ENV', "Application environment" do |arg|
@@ -364,10 +365,12 @@ module Sidekiq
364
365
 
365
366
  o.on '-L', '--logfile PATH', "path to writable logfile" do |arg|
366
367
  opts[:logfile] = arg
368
+ puts "WARNING: Logfile redirection will be removed in Sidekiq 6.0, see #4045. Sidekiq will only log to STDOUT"
367
369
  end
368
370
 
369
371
  o.on '-P', '--pidfile PATH', "path to pidfile" do |arg|
370
372
  opts[:pidfile] = arg
373
+ puts "WARNING: PID file creation will be removed in Sidekiq 6.0, see #4045. Please use a proper process supervisor to start and manage your services"
371
374
  end
372
375
 
373
376
  o.on '-V', '--version', "Print version and exit" do |arg|
@@ -381,11 +384,8 @@ module Sidekiq
381
384
  logger.info @parser
382
385
  die 1
383
386
  end
384
- @parser.parse!(argv)
385
387
 
386
- %w[config/sidekiq.yml config/sidekiq.yml.erb].each do |filename|
387
- opts[:config_file] ||= filename if File.exist?(filename)
388
- end
388
+ @parser.parse!(argv)
389
389
 
390
390
  opts
391
391
  end
@@ -405,23 +405,18 @@ module Sidekiq
405
405
  end
406
406
  end
407
407
 
408
- def parse_config(cfile)
409
- opts = {}
410
- if File.exist?(cfile)
411
- opts = YAML.load(ERB.new(IO.read(cfile)).result) || opts
408
+ def parse_config(path)
409
+ opts = YAML.load(ERB.new(File.read(path)).result) || {}
412
410
 
413
- if opts.respond_to? :deep_symbolize_keys!
414
- opts.deep_symbolize_keys!
415
- else
416
- symbolize_keys_deep!(opts)
417
- end
418
-
419
- opts = opts.merge(opts.delete(environment.to_sym) || {})
420
- parse_queues(opts, opts.delete(:queues) || [])
411
+ if opts.respond_to? :deep_symbolize_keys!
412
+ opts.deep_symbolize_keys!
421
413
  else
422
- # allow a non-existent config file so Sidekiq
423
- # can be deployed by cap with just the defaults.
414
+ symbolize_keys_deep!(opts)
424
415
  end
416
+
417
+ opts = opts.merge(opts.delete(environment.to_sym) || {})
418
+ parse_queues(opts, opts.delete(:queues) || [])
419
+
425
420
  ns = opts.delete(:namespace)
426
421
  if ns
427
422
  # logger hasn't been initialized yet, puts is all we have.
@@ -435,10 +430,10 @@ module Sidekiq
435
430
  queues_and_weights.each { |queue_and_weight| parse_queue(opts, *queue_and_weight) }
436
431
  end
437
432
 
438
- def parse_queue(opts, q, weight=nil)
433
+ def parse_queue(opts, queue, weight = nil)
439
434
  opts[:queues] ||= []
440
- raise ArgumentError, "queues: #{q} cannot be defined twice" if opts[:queues].include?(q)
441
- [weight.to_i, 1].max.times { opts[:queues] << q }
435
+ raise ArgumentError, "queues: #{queue} cannot be defined twice" if opts[:queues].include?(queue)
436
+ [weight.to_i, 1].max.times { opts[:queues] << queue }
442
437
  opts[:strict] = false if weight.to_i > 0
443
438
  end
444
439
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Sidekiq
3
4
  class Rails < ::Rails::Engine
4
5
  # We need to setup this up before any application configuration which might
@@ -54,4 +55,4 @@ if defined?(::Rails) && ::Rails::VERSION::MAJOR < 4
54
55
  $stderr.puts("**************************************************")
55
56
  $stderr.puts("⛔️ WARNING: Sidekiq server is no longer supported by Rails 3.2 - please ensure your server/workers are updated")
56
57
  $stderr.puts("**************************************************")
57
- end
58
+ end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Sidekiq
3
- VERSION = "5.2.3"
3
+ VERSION = "5.2.4"
4
4
  end
@@ -17,7 +17,7 @@ module Sidekiq
17
17
  "manifest-src 'self'",
18
18
  "media-src 'self'",
19
19
  "object-src 'none'",
20
- "script-src 'self' https: http:",
20
+ "script-src 'self' https: http: 'unsafe-inline'",
21
21
  "style-src 'self' https: http: 'unsafe-inline'",
22
22
  "worker-src 'self'",
23
23
  "base-uri 'self'"
@@ -7,13 +7,13 @@ module Sidekiq
7
7
  # Include this module in your worker class and you can easily create
8
8
  # asynchronous jobs:
9
9
  #
10
- # class HardWorker
11
- # include Sidekiq::Worker
10
+ # class HardWorker
11
+ # include Sidekiq::Worker
12
12
  #
13
- # def perform(*args)
14
- # # do some work
13
+ # def perform(*args)
14
+ # # do some work
15
+ # end
15
16
  # end
16
- # end
17
17
  #
18
18
  # Then in your Rails app, you can do this:
19
19
  #
@@ -1,5 +1,4 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/sidekiq/version', __FILE__)
1
+ require_relative 'lib/sidekiq/version'
3
2
 
4
3
  Gem::Specification.new do |gem|
5
4
  gem.authors = ["Mike Perham"]
@@ -11,13 +10,12 @@ Gem::Specification.new do |gem|
11
10
 
12
11
  gem.executables = ['sidekiq', 'sidekiqctl']
13
12
  gem.files = `git ls-files | grep -Ev '^(test|myapp|examples)'`.split("\n")
14
- gem.test_files = []
15
13
  gem.name = "sidekiq"
16
- gem.require_paths = ["lib"]
17
14
  gem.version = Sidekiq::VERSION
18
15
  gem.required_ruby_version = ">= 2.2.2"
19
16
 
20
17
  gem.add_dependency 'redis', '>= 3.3.5', '< 5'
21
18
  gem.add_dependency 'connection_pool', '~> 2.2', '>= 2.2.2'
19
+ gem.add_dependency 'rack', '>= 1.5.0'
22
20
  gem.add_dependency 'rack-protection', '>= 1.5.0'
23
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3
4
+ version: 5.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Perham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-06 00:00:00.000000000 Z
11
+ date: 2019-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -50,6 +50,20 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: 2.2.2
53
+ - !ruby/object:Gem::Dependency
54
+ name: rack
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 1.5.0
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 1.5.0
53
67
  - !ruby/object:Gem::Dependency
54
68
  name: rack-protection
55
69
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +94,7 @@ files:
80
94
  - 3.0-Upgrade.md
81
95
  - 4.0-Upgrade.md
82
96
  - 5.0-Upgrade.md
97
+ - Appraisals
83
98
  - COMM-LICENSE
84
99
  - Changes.md
85
100
  - Ent-Changes.md
@@ -95,6 +110,8 @@ files:
95
110
  - bin/sidekiqctl
96
111
  - bin/sidekiqload
97
112
  - code_of_conduct.md
113
+ - gemfiles/rails_4.gemfile
114
+ - gemfiles/rails_5.gemfile
98
115
  - lib/generators/sidekiq/templates/worker.rb.erb
99
116
  - lib/generators/sidekiq/templates/worker_spec.rb.erb
100
117
  - lib/generators/sidekiq/templates/worker_test.rb.erb
@@ -208,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
225
  version: '0'
209
226
  requirements: []
210
227
  rubyforge_project:
211
- rubygems_version: 2.6.13
228
+ rubygems_version: 2.7.6
212
229
  signing_key:
213
230
  specification_version: 4
214
231
  summary: Simple, efficient background processing for Ruby