forked from cloudfoundry/cloud_controller_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (50 loc) · 1.38 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
# 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 "unf"
gem "rfc822"
gem "sequel", "~> 3.48"
gem "sinatra", "~> 1.4"
gem "sinatra-contrib"
gem "yajl-ruby"
gem "membrane", "~> 0.0.2"
gem "httpclient"
gem "steno"
gem "cloudfront-signer"
gem "vcap-concurrency", git: "https://github.com/cloudfoundry/vcap-concurrency.git", ref: "2a5b0179"
gem "cf-uaa-lib", "~> 1.3.7", git: "https://github.com/cloudfoundry/cf-uaa-lib.git", ref: "8d34eede"
gem "cf-message-bus", git: "https://github.com/cloudfoundry/cf-message-bus.git"
gem "vcap_common", git: "https://github.com/cloudfoundry/vcap-common.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 "rspec"
gem "rspec_api_documentation"
gem "simplecov"
gem "simplecov-rcov"
gem "machinist", "~> 1.0.6"
gem "webmock"
gem "guard-rspec"
gem "timecop"
gem "rack-test"
gem "parallel_tests"
gem "fakefs", require: "fakefs/safe"
end