forked from cloudfoundry-attic/vmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmc.gemspec
31 lines (24 loc) · 977 Bytes
/
vmc.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
30
31
$:.unshift File.expand_path("../lib", __FILE__)
require 'cli/version'
spec = Gem::Specification.new do |s|
s.name = "vmc"
s.version = VMC::Cli::VERSION
s.author = "VMware"
s.email = "[email protected]"
s.homepage = "http://vmware.com"
s.description = s.summary = "Client library and CLI that provides access to the VMware Cloud Application Platform."
s.executables = %w(vmc)
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.md", "LICENSE"]
s.add_dependency "json_pure", "~> 1.5.1"
s.add_dependency "rubyzip2", "~> 2.0.1"
s.add_dependency "highline", "~> 1.6.1"
s.add_dependency "rest-client", ">= 1.6.1", "< 1.7.0"
s.add_dependency "terminal-table", "~> 1.4.2"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 1.3.0"
s.add_development_dependency "webmock", "~> 1.5.0"
s.bindir = "bin"
s.require_path = 'lib'
s.files = %w(LICENSE README.md Rakefile) + Dir.glob("{lib,spec}/**/*")
end