forked from cloudfoundry/bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (61 loc) · 1.84 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
# Copyright (c) 2009-2012 VMware, Inc.
source 'https://rubygems.org'
gem "agent_client", :path => "agent_client"
gem "blobstore_client", :path => "blobstore_client"
gem "bosh_agent", :path => "bosh_agent"
gem "bosh_aws_cpi", :path => "bosh_aws_cpi"
gem "bosh_common", :path => "bosh_common"
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_encryption", :path => "bosh_encryption"
gem "bosh_openstack_cpi", :path => "bosh_openstack_cpi"
gem "bosh_registry", :path => "bosh_registry"
gem "bosh_vcloud_cpi", :path => "bosh_vcloud_cpi"
gem "bosh_vsphere_cpi", :path => "bosh_vsphere_cpi"
gem "director", :path => "director"
gem "health_monitor", :path => "health_monitor"
gem "monit_api", :path => "monit_api"
gem "package_compiler", :path => "package_compiler"
gem "ruby_vcloud_sdk", :path => "ruby_vcloud_sdk"
gem "ruby_vim_sdk", :path => "ruby_vim_sdk"
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"
end
group :development do
gem "ruby_gntp"
gem "debugger" if RUBY_VERSION < "2.0.0"
end
group :bat do
gem "httpclient"
gem "json"
gem "minitar"
gem "net-ssh"
end
group :development, :test do
gem "rack-test"
gem "guard"
gem "guard-bundler"
gem "guard-rspec"
gem "ci_reporter"
gem "rspec"
gem "tracker-git", github: "cboone/tracker-git", branch: "edge"
gem "webmock"
gem "simplecov"
gem "simplecov-rcov"
# for director
gem "machinist", "~>1.0"
# for root level specs
gem "rest-client"
gem "redis"
gem "nats"
gem "rugged"
# from ruby_vcloud_sdk
gem "nokogiri-diff"
gem "sqlite3"
end