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 1ab8883367 cleanup
2016-08-24 09:48:42 -07:00

29 lines
568 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rails', '5.0.0'
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