forked from cloudfoundry/cloud_controller_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
90 lines (82 loc) · 2.02 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
79
80
81
82
83
84
85
86
87
88
89
90
source 'https://rubygems.org'
gem 'actionpack'
gem 'actionview'
gem 'activemodel'
gem 'addressable'
gem 'allowy'
gem 'clockwork', require: false
gem 'cloudfront-signer'
gem 'em-http-request', '~> 1.0'
gem 'eventmachine', '~> 1.0.9'
gem 'httpclient'
gem 'i18n'
gem 'json-schema'
gem 'json_pure', '1.8.6'
gem 'loggregator_emitter', '~> 5.0'
gem 'membrane', '~> 1.0'
gem 'mime-types', '~> 3.0'
gem 'multi_json'
gem 'multipart-parser'
gem 'net-ssh'
gem 'netaddr'
gem 'newrelic_rpm', '>= 3.12'
gem 'nokogiri', '~> 1.8.1'
gem 'posix-spawn', '~> 0.3.6'
gem 'protobuf', '3.6.12'
gem 'public_suffix', '~> 2.0'
gem 'railties'
gem 'rake'
gem 'rfc822'
gem 'rubyzip'
gem 'sequel'
gem 'sinatra', '~> 1.4'
gem 'sinatra-contrib'
gem 'statsd-ruby', '~> 1.4.0'
gem 'steno'
gem 'talentbox-delayed_job_sequel', '~> 4.2.2'
gem 'thin'
gem 'unf'
gem 'vmstat', '~> 2.0'
gem 'yajl-ruby'
gem 'fog-aws'
gem 'fog-azure-rm'
gem 'fog-google', '~> 1.0.0'
gem 'fog-local'
gem 'fog-openstack'
gem 'bits_service_client'
gem 'cf-uaa-lib', '~> 3.13.0'
gem 'vcap-concurrency', git: 'https://github.com/cloudfoundry/vcap-concurrency.git', ref: '2a5b0179'
gem 'cf-perm', git: 'https://github.com/cloudfoundry-incubator/perm-rb.git', branch: 'master'
gem 'scientist'
group :db do
gem 'mysql2', '0.4.8'
gem 'pg', '0.19.0'
end
group :operations do
gem 'awesome_print'
gem 'pry-byebug'
end
group :test do
gem 'cf-perm-test-helpers', git: 'https://github.com/cloudfoundry-incubator/perm-rb.git', branch: 'master'
gem 'codeclimate-test-reporter', require: false
gem 'fakefs', require: 'fakefs/safe'
gem 'hashdiff'
gem 'machinist', '~> 1.0.6'
gem 'parallel_tests'
gem 'rack-test'
gem 'rspec', '~> 3.0'
gem 'rspec-collection_matchers'
gem 'rspec-instafail'
gem 'rspec-its'
gem 'rspec-rails'
gem 'rspec_api_documentation', git: 'https://github.com/zipmark/rspec_api_documentation.git'
gem 'rubocop'
gem 'timecop'
gem 'webmock', '> 2.3.1'
end
group :development do
gem 'byebug'
gem 'debase', '>= 0.2.2.beta10'
gem 'roodi'
gem 'ruby-debug-ide', '>= 0.6.1.beta4'
end