https://github.com/mperham/sidekiq
Raw File
Tip revision: 179d30e712fc23cc00ab91f23896e814c7c05e92 authored by Mike Perham on 01 November 2016, 18:41:54 UTC
latest changes
Tip revision: 179d30e
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