1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/Gemfile
Jeremy Daer 6332b9f8a3 redis-rb 4.0 support
* Loosen Redis version dep to `>= 3.3.5, < 5`
* Bump redis-namespace for looser Redis version dep. Pending
  https://github.com/resque/redis-namespace/pull/136 gem release.

Use `redis.connection` where we can and fall back to `redis._client`
where we need (to inspect timeout and scheme).

References #3617
2017-09-28 21:54:06 -07:00

32 lines
690 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rails', '>= 5.0.1'
gem "hiredis"
gem 'simplecov'
gem 'minitest'
#gem 'minitest-utils'
gem 'toxiproxy'
# For Redis 4.0 support. Unreleased 9cb81bf.
gem 'redis-namespace', git: 'https://github.com/resque/redis-namespace'
platforms :rbx do
gem 'rubysl', '~> 2.0' # if using anything in the ruby standard library
gem 'psych' # if using yaml
gem 'rubinius-developer_tools' # if using any of coverage, debugger, profiler
end
platforms :ruby do
gem 'sqlite3'
end
platforms :mri do
gem 'pry-byebug'
gem 'ruby-prof'
end
#platforms :jruby do
#gem 'jruby-openssl'
#gem 'activerecord-jdbcsqlite3-adapter'
#end