forked from travis-ci/travis-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (43 loc) · 1.17 KB
/
Gemfile
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
43
44
45
46
47
48
49
50
51
52
53
source :rubygems
gem 'resque', '~> 1.17.0'
gem 'resque-meta', '~> 1.0.3'
gem 'resque-heartbeat', '~> 0.0.2'
platforms :ruby_18 do
gem 'SystemTimer'
end
gem 'vagrant', ">= 0.7.7"
gem 'net-ssh'
gem 'net-ssh-shell', '~> 0.2.0'
gem 'hashie'
gem "multi_json"
# amqp migration is a work in progress but it does not affect resque-based worker in any way
gem "amqp", :git => "git://github.com/ruby-amqp/amqp.git"
gem "amq-client", :git => "git://github.com/ruby-amqp/amq-client.git"
gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git"
gem "eventmachine", :git => "git://github.com/eventmachine/eventmachine.git"
gem 'faraday', '~> 0.7.3'
gem 'rake', '~> 0.9.2'
gem 'thor'
gem 'god'
group :development do
gem 'yard', '~> 0.7.1'
gem 'rdiscount'
end
group :test do
gem 'mocha'
gem 'test_declarative'
# gem 'web-socket-ruby'
# gem 'fakeredis'
# gem 'fakeweb'
platforms :ruby_18 do
gem 'minitest'
gem 'minitest_tu_shim'
end
platforms :mri_18 do
gem 'ruby-debug'
end
platforms :mri_19 do
gem 'ruby-debug19'
end
gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git"
end