forked from cloudfoundry/cloud_controller_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (66 loc) · 1.76 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
# This used to be https, but that causes problems in the vagrant container used by warden-jenkins.
source 'http://rubygems.org'
gem 'addressable'
gem 'railties'
gem 'rake'
gem 'eventmachine', '~> 1.0.0'
gem 'fog'
gem 'i18n'
gem 'nokogiri', '~> 1.6.2'
gem 'unf'
gem 'netaddr'
gem 'rfc822'
gem 'sequel'
gem 'sinatra', '~> 1.4'
gem 'sinatra-contrib'
gem 'multi_json'
gem 'yajl-ruby'
gem 'mime-types', '~> 2.6.2'
gem 'membrane', '~> 1.0'
gem 'httpclient'
gem 'steno'
gem 'cloudfront-signer'
gem 'vcap_common', '~> 4.0'
gem 'allowy'
gem 'loggregator_emitter', '~> 5.0'
gem 'delayed_job_sequel', git: 'https://github.com/cloudfoundry/delayed_job_sequel.git'
gem 'thin', '~> 1.6.0'
gem 'newrelic_rpm', '3.12.0.288'
gem 'clockwork', require: false
gem 'activemodel'
gem 'statsd-ruby'
# We need to use https for git urls as the git protocol is blocked by various
# firewalls
gem 'vcap-concurrency', git: 'https://github.com/cloudfoundry/vcap-concurrency.git', ref: '2a5b0179'
gem 'cf-uaa-lib', '~> 3.1.0', git: 'https://github.com/cloudfoundry/cf-uaa-lib.git', ref: 'b1e11235dc6cd7d8d4680e005526de37201305ea'
gem 'cf-message-bus', '~> 0.3.0'
group :db do
gem 'mysql2', '0.3.20'
gem 'pg', '0.16.0'
end
group :operations do
gem 'pry-byebug'
gem 'awesome_print'
end
group :test do
gem 'codeclimate-test-reporter', require: false
gem 'fakefs', require: 'fakefs/safe'
gem 'machinist', '~> 1.0.6'
gem 'parallel_tests'
gem 'rack-test'
gem 'rspec', '~> 3.0'
gem 'rspec-instafail'
gem 'rspec_api_documentation', git: 'https://github.com/zipmark/rspec_api_documentation.git'
gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'rspec-rails'
gem 'rubocop'
gem 'astrolabe'
gem 'timecop'
gem 'webmock'
end
group :development do
gem 'roodi'
gem 'ruby-debug-ide'
gem 'byebug'
end