Skip to content

Commit

Permalink
Require at least sidekiq 4
Browse files Browse the repository at this point in the history
Sidekiq version policy states that only current and previous major
versions receive support, ideally I would like to see us only supporting
sidekiq versions that currently receive support, but there may be people
in older versions like sidekiq 4, so let's just increase to 4 the
minimum version required for sidekiq and see if someone has any
complaint.

Currently only Sidekiq 5 & 6 receive support and soon support for v5 may
be dropped once Sidekiq 7 is released.
  • Loading branch information
marcelolx committed Apr 28, 2022
1 parent fd7f984 commit f15e7ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sidekiq-scheduler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Gem::Specification.new do |s|
s.summary = 'Light weight job scheduling extension for Sidekiq'
s.description = 'Light weight job scheduling extension for Sidekiq that adds support for queueing jobs in a recurring way.'

s.files = Dir['{lib,web}/**/*'] + %w[MIT-LICENSE Rakefile README.md]
s.files = Dir['{lib,web}/**/*'] + %w[MIT-LICENSE Rakefile README.md CHANGELOG.md]

s.required_ruby_version = '>= 2.5'

s.add_dependency 'sidekiq', '>= 3'
s.add_dependency 'sidekiq', '>= 4'
s.add_dependency 'redis', '>= 4.2.0'
s.add_dependency 'rufus-scheduler', '~> 3.2'
s.add_dependency 'tilt', '>= 1.4.0'
Expand Down

0 comments on commit f15e7ca

Please sign in to comment.