https://github.com/mperham/sidekiq
Raw File
Tip revision: 7b4c11c454a672bf7eda41356e1ceb5017c3c06b authored by Mike Perham on 29 June 2016, 16:54:36 UTC
polish, release 4.1.3
Tip revision: 7b4c11c
Gemfile
source 'https://rubygems.org'
gemspec

gem "hiredis"
gem 'rails', '~> 4.2'
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