forked from travis-ci/travis-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (30 loc) · 1 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
source 'https://rubygems.org'
ruby '1.9.3', engine: 'jruby', engine_version: '1.7.16' if ENV.key?('DYNO')
gem 'travis-build', git: 'https://github.com/travis-ci/travis-build'
gem 'travis-support', git: 'https://github.com/travis-ci/travis-support'
gem 'celluloid', git: 'https://github.com/celluloid/celluloid', ref: '5a56056'
gem 'activesupport', '~> 3.2'
gem 'thor'
gem 'faraday', '~> 0.7.5'
gem 'hashr', '~> 0.0.18'
gem 'multi_json', '~> 1.2.0'
gem 'json'
gem 'coder'
gem 'fog', '~> 1.25.0'
gem 'travis-saucelabs-api', '~> 0.0'
gem 'docker-api'
gem 'net-ssh', '~> 2.9.0'
gem 'sshjr', git: 'https://github.com/joshk/sshjr'
gem 'metriks', '0.9.9.5'
gem 'march_hare', '2.7.0'
gem 'sentry-raven', require: 'raven'
group :test do
gem 'rake', '~> 0.9.2'
gem 'mocha', '~> 0.11.0'
gem 'rspec'
gem 'simplecov', '>= 0.4.0', require: false
gem 'webmock'
end
group :development do
gem 'pry'
end