forked from joshuamckenty/openstack-bosh-cpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bosh_occi_cpi.gemspec
29 lines (25 loc) · 1001 Bytes
/
bosh_occi_cpi.gemspec
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
# Copyright (c) 2012 Piston Cloud Computing, Inc.
# Copyright (c) 2012 ZHAW
require File.dirname(__FILE__) + "/lib/cloud/occi/version"
Gem::Specification.new do |s|
s.name = "bosh_occi_cpi"
s.version = Bosh::OcciCloud::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "BOSH OCCI CPI"
s.description = s.summary
s.author = "Andy Edmonds"
s.email = "[email protected]"
s.homepage = "http://www.zhaw.ch"
s.files = `git ls-files -- bin/* lib/*`.split("\n") + %w(README Rakefile)
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = "lib"
s.bindir = "bin"
s.executables = %w(bosh_occi_console)
# TODO Need an OCCI ruby client, GWDG possibly
# s.add_dependency "occi", ">=0.1"
s.add_dependency "bosh_common", ">=0.4.0"
s.add_dependency "bosh_cpi", ">=0.4.2"
s.add_dependency "httpclient", ">=2.2.0"
s.add_dependency "uuidtools", ">=2.1.2"
s.add_dependency "yajl-ruby", ">=0.8.2"
end