forked from sidekiq/sidekiq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (26 loc) · 690 Bytes
/
Gemfile
File metadata and controls
32 lines (26 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
source 'https://rubygems.org'
gemspec
gem 'rails', '>= 5.0.1'
gem "hiredis"
gem 'simplecov'
gem 'minitest'
#gem 'minitest-utils'
gem 'toxiproxy'
# For Redis 4.0 support. Unreleased 9cb81bf.
gem 'redis-namespace', git: 'https://github.com/resque/redis-namespace'
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