forked from vchs/ruby_vcloud_sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby_vcloud_sdk.gemspec
More file actions
23 lines (20 loc) · 812 Bytes
/
ruby_vcloud_sdk.gemspec
File metadata and controls
23 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
# Copyright (c) 2009-2012 VMware, Inc.
Gem::Specification.new do |s|
s.name = "ruby_vcloud_sdk"
s.version = "0.4.8"
s.platform = Gem::Platform::RUBY
s.summary = "BOSH vCloud API client"
s.description = "BOSH vCloud API client\n#{`git rev-parse HEAD`[0, 6]}"
s.author = "VMware"
s.homepage = 'https://github.com/cloudfoundry/bosh'
s.license = 'Apache 2.0'
s.email = "support@cloudfoundry.com"
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.files = `git ls-files -- lib/*`.split("\n") + %w(README)
s.require_path = "lib"
s.add_dependency("builder","~>3.1.4")
s.add_dependency("httpclient", "=2.2.4")
s.add_dependency("rest-client", "~>1.6.7")
s.add_dependency("nokogiri", "= 1.5.6")
end