forked from HuaweiTech/cloud_controller_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
55 lines (51 loc) · 1.43 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
# This used to be https, but that causes problems in the vagrant container used by warden-jenkins.
source 'http://rubygems.org'
gem 'addressable'
gem 'activesupport', '~> 3.0' # It looks like this is required for DelayedJob, even with the DJ-Sequel extension
gem 'rake'
gem 'bcrypt-ruby'
gem 'eventmachine', '~> 1.0.0'
gem 'fog'
gem 'nokogiri', '~> 1.6.2'
gem 'unf'
gem 'rfc822'
gem 'sequel', '~> 3.48'
gem 'sinatra', '~> 1.4'
gem 'sinatra-contrib'
gem 'yajl-ruby'
gem 'membrane', '~> 1.0'
gem 'httpclient'
gem 'steno'
gem 'cloudfront-signer'
gem 'vcap-concurrency', git: 'https://github.com/cloudfoundry/vcap-concurrency.git', ref: '2a5b0179'
gem 'cf-uaa-lib', '~> 2.1.0', git: 'https://github.com/cloudfoundry/cf-uaa-lib.git', ref: '81e5e4d6'
gem 'cf-message-bus', git: 'https://github.com/cloudfoundry/cf-message-bus.git'
gem 'vcap_common', '~> 4.0'
gem 'cf-registrar', '~> 1.0.1', git: 'https://github.com/cloudfoundry/cf-registrar.git'
gem 'allowy'
gem 'loggregator_emitter', '~> 3.0'
gem 'talentbox-delayed_job_sequel'
gem 'thin', '~> 1.5.1'
gem 'newrelic_rpm'
gem 'clockwork', require: false
group :db do
gem 'mysql2'
gem 'pg'
gem 'sqlite3'
end
group :operations do
gem 'pry'
end
group :test do
gem 'debugger'
gem 'fakefs', require: 'fakefs/safe'
gem 'machinist', '~> 1.0.6'
gem 'parallel_tests'
gem 'rack-test'
gem 'rspec'
gem 'rspec-instafail'
gem 'rspec_api_documentation'
gem 'rubocop'
gem 'timecop'
gem 'webmock'
end