-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGemfile
35 lines (29 loc) · 1.21 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
source "http://rubygems.org"
gem 'eventmachine' # , :git => 'git://github.com/cloudfoundry/eventmachine.git', :branch => 'release-0.12.11-cf'
gem "em-http-request"
gem "nats"
gem "ruby-hmac"
gem "uuidtools"
gem "datamapper", ">= 0.10.2"
gem "dm-sqlite-adapter"
gem "do_sqlite3"
gem "sinatra", "~> 1.2.3"
gem "thin"
gem 'vcap_common', :require => ['vcap/common', 'vcap/component'], :git => 'git://github.com/cloudfoundry/vcap-common.git'
gem 'vcap_logging', :require => ['vcap/logging'], :git => 'git://github.com/cloudfoundry/common.git', :ref => 'b96ec1192'
gem 'vcap_services_base', :git => 'git://github.com/cloudfoundry/vcap-services-base.git', branch: 'master'
gem 'warden-client', :require => ['warden/client'], :git => 'git://github.com/cloudfoundry/warden.git', :ref => 'fe6cb51'
gem 'warden-protocol', :require => ['warden/protocol'], :git => 'git://github.com/cloudfoundry/warden.git', :ref => 'fe6cb51'
gem 'multi_json'
gem 'fog', :git => 'git://github.com/anynines/fog.git', :ref => '85eef15c4fe4110f49c6ca4b7f4011c5c0b75145', :require => 'fog/openstack'
gem 'pry'
group :development do
gem 'pry-debugger'
end
group :test do
gem "rake"
gem "rspec"
gem "simplecov"
gem "simplecov-rcov"
gem "ci_reporter"
end