forked from travis-ci/travis-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (47 loc) · 1.3 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
54
55
56
57
58
59
source :rubygems
gem 'resque', '~> 1.17.0'
gem 'resque-meta', '~> 1.0.3'
gem 'resque-heartbeat', '~> 0.0.2'
platforms :mri_18 do
gem 'SystemTimer'
end
gem 'vagrant', "0.7.7"
# gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git'
# gem 'vagrant', "~> 0.8.2"
gem 'net-ssh'
gem 'net-ssh-shell', '~> 0.2.0'
gem 'hashr', '~> 0.0.9'
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", ">= 1.0.beta3"
gem 'faraday', '~> 0.7.3'
gem 'rake', '~> 0.9.2'
gem 'thor'
platform :ruby do
gem 'god'
end
group :development do
gem 'yard', '~> 0.7.1'
platform :ruby do
gem 'rdiscount'
end
end
group :debug do
gem 'ruby-debug', :platforms => :mri_18
gem 'ruby-debug19', :platforms => :mri_19
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
gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git"
end