-
Notifications
You must be signed in to change notification settings - Fork 657
/
Copy pathGemfile
73 lines (54 loc) · 1.48 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
source 'https://rubygems.org'
ruby '3.1.0'
gem 'bosh-core', path: 'bosh-core'
gem 'bosh-director', path: 'bosh-director'
gem 'bosh-director-core', path: 'bosh-director-core'
gem 'bosh-monitor', path: 'bosh-monitor'
gem 'bosh-template', path: 'bosh-template'
gem 'bosh_common', path: 'bosh_common'
gem 'rake', '~>13.0.3'
# json version is hardcoded in release director and health_monitor
# when modified needs to be updated there as well
gem 'json', '=2.6.1'
gem 'talentbox-delayed_job_sequel', '~>4.3'
gem 'ruby-prof', '0.17.0'
group :production do
gem 'mysql2'
gem 'pg'
end
group :bat do
gem 'httpclient'
gem 'minitar'
gem 'net-ssh'
end
group :development, :test do
gem 'bosh-dev', path: 'bosh-dev'
gem 'bosh_cpi'
gem 'bundle-audit'
gem 'rspec', '~> 3.4'
gem 'rspec-instafail'
gem 'rspec-its'
gem 'fakefs'
gem 'parallel_tests', '~> 2.0'
gem 'rack-test', '>= 0.6.3'
gem 'sinatra', '>= 2.0.2'
gem 'sinatra-contrib', '>= 2.0.2'
gem 'webmock'
gem 'pry-byebug'
gem 'pry-remote'
gem 'rubocop'
gem 'rubocop-git'
gem 'eventmachine', '~>1.3.0.dev.1', git: 'https://github.com/eventmachine/eventmachine', ref: 'abe34'
gem 'netaddr', '~>1.5.3.dev.1', git: 'https://github.com/dspinhirne/netaddr-rb', tag: '1.5.3'
# for director
gem 'machinist', '~>1.0'
gem 'factory_bot', '~> 6.2'
# for root level specs
gem 'nats-pure', '~>0.6.2'
gem 'openssl'
gem 'rest-client'
gem 'blue-shell'
gem 'sqlite3'
gem 'timecop', '~>0.9.4'
gem 'unix-crypt'
end