forked from cloudfoundry/bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
78 lines (66 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# encoding: UTF-8
source 'https://rubygems.org'
gem 'agent_client', path: 'agent_client'
gem 'blobstore_client', path: 'blobstore_client'
gem 'bosh_aws_cpi', path: 'bosh_aws_cpi'
gem 'bosh_common', path: 'bosh_common'
gem 'bosh-core', path: 'bosh-core'
gem 'bosh_cpi', path: 'bosh_cpi'
gem 'bosh_cli', path: 'bosh_cli'
gem 'bosh_cli_plugin_aws', path: 'bosh_cli_plugin_aws'
gem 'bosh_cli_plugin_micro', path: 'bosh_cli_plugin_micro'
gem 'bosh_openstack_cpi', path: 'bosh_openstack_cpi'
gem 'bosh-registry', path: 'bosh-registry'
gem 'bosh_vsphere_cpi', path: 'bosh_vsphere_cpi'
gem 'bosh-director', path: 'bosh-director'
gem 'bosh-director-core', path: 'bosh-director-core'
gem 'bosh-monitor', path: 'bosh-monitor'
gem 'bosh-release', path: 'bosh-release'
gem 'bosh-template', path: 'bosh-template'
gem 'simple_blobstore_server', path: 'simple_blobstore_server'
gem 'rake', '~>10.0'
group :production do
# this was pulled from bosh_aws_registry's Gemfile. Why does it exist?
# also bosh_openstack_registry, director
gem 'pg'
gem 'mysql2'
end
group :bat do
gem 'httpclient'
gem 'json'
gem 'minitar'
gem 'net-ssh'
end
group :development, :test do
gem 'bosh-dev', path: 'bosh-dev'
gem 'bosh-stemcell', path: 'bosh-stemcell'
gem 'serverspec'
gem 'rspec', '~> 3.0.0'
gem 'rspec-its'
gem 'rspec-instafail'
gem 'rubocop', require: false
gem 'parallel_tests'
gem 'rack-test'
gem 'webmock'
gem 'fakefs'
gem 'simplecov', '~> 0.9.0'
gem 'sinatra'
gem 'sinatra-contrib'
gem 'codeclimate-test-reporter', require: false
gem 'vcr'
gem 'pry'
# Explicitly do not require serverspec dependency
# so that it could be monkey patched in a deterministic way
# in `bosh-stemcell/spec/support/serverspec_monkeypatch.rb`
gem 'specinfra', require: nil
# for director
gem 'machinist', '~>1.0'
# for root level specs
gem 'rest-client'
gem 'redis'
gem 'nats'
gem 'rugged'
gem 'sqlite3'
gem 'timecop', '~>0.7.1'
gem 'blue-shell'
end