forked from Adrian2112/resque
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (36 loc) · 875 Bytes
/
Gemfile
File metadata and controls
42 lines (36 loc) · 875 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
33
34
35
36
37
38
39
40
41
42
source "https://rubygems.org"
gemspec
gem "redis-namespace", :git => "https://github.com/resque/redis-namespace.git"
group :development do
gem 'rake'
end
group :documentation do
gem 'rdoc'
gem 'yard-thor', '~>0.2', :github => 'lsegal/yard-thor'
gem 'kramdown'
gem 'coveralls', :require => false
end
group :development, :documentation do
gem 'yard'
end
group :test do
gem "json"
gem "minitest", '4.7.0'
gem "minitest-stub-const"
gem 'mock_redis', :git => "https://github.com/causes/mock_redis.git"
end
platforms :rbx do
# These are the ruby standard library
# dependencies and transitive dependencies.
gem 'rubysl-net-http'
gem 'rubysl-socket'
gem 'rubysl-logger'
gem 'rubysl-cgi'
gem 'rubysl-uri'
gem 'rubysl-timeout'
gem 'rubysl-zlib'
gem 'rubysl-stringio'
gem 'rubysl-test-unit'
gem 'rubysl-mutex_m'
gem 'rubysl-irb'
end