mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
d58a0a16ee
We need to remove Ruby 2.5 because the new net-smtp gem is required for the mail gem on Ruby 3.1 but it does not work on <=2.5. https://github.com/mikel/mail/pull/1439 Also remove an anon struct test which now breaks with safe YAML loading on 3.1.
27 lines
520 B
Ruby
27 lines
520 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rake"
|
|
gem "redis-namespace", github: "resque/redis-namespace", branch: :master
|
|
gem "rails", ">= 6.0.2"
|
|
gem "sqlite3", platforms: :ruby
|
|
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
|
|
|
# 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
|
|
end
|
|
|
|
group :load_test do
|
|
gem "hiredis"
|
|
gem "toxiproxy"
|
|
end
|