1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/Gemfile
Mike Perham b8f7082642 Fix minitest warnings (#3300)
* Fix minitest deprecations, fixes #3300

* fix jruby

* test against jruby release

* ugh

* bump to 5.0.1

* fix test
2017-01-02 12:06:02 -08:00

29 lines
572 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rails', '>= 5.0.1'
gem "hiredis"
gem 'simplecov'
gem 'minitest'
#gem 'minitest-utils'
gem 'toxiproxy'
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