mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
aaac999c6d
* Add a compatibility layer for `redis-client` As discussed in https://github.com/mperham/sidekiq/pull/5253 Switching entirely to redis-client is deemed risky, so instead we can support both. All is needed is a small translation layer, and some very minimal adjustments in the callers. Co-authored-by: Jean Boussier <jean.boussier@gmail.com> Co-authored-by: Mike Perham <mperham@gmail.com>
30 lines
528 B
Ruby
30 lines
528 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rake"
|
|
gem "redis-namespace"
|
|
gem "redis-client"
|
|
gem "rails", "~> 6.0"
|
|
gem "sqlite3", platforms: :ruby
|
|
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
|
gem "after_commit_everywhere"
|
|
|
|
# mail dependencies
|
|
gem "net-smtp", platforms: :mri, require: false
|
|
|
|
group :test do
|
|
gem "minitest"
|
|
gem "simplecov"
|
|
gem "codecov", require: false
|
|
end
|
|
|
|
group :development, :test do
|
|
gem "standard", require: false
|
|
gem "pry"
|
|
end
|
|
|
|
group :load_test do
|
|
gem "hiredis"
|
|
gem "toxiproxy"
|
|
end
|