https://github.com/mperham/sidekiq
Raw File
Tip revision: 804ee0daeac6451ce388c086649d38f3c8152a4c authored by Mike Perham on 13 September 2016, 18:27:05 UTC
bump, release!
Tip revision: 804ee0d
Gemfile
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
back to top