forked from frapposelli/vagrant-vcloud
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vagrant-vcloud.gemspec
34 lines (30 loc) · 1.42 KB
/
vagrant-vcloud.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
32
33
34
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'vagrant-vcloud/version'
Gem::Specification.new do |s|
s.name = 'vagrant-vcloud'
s.version = VagrantPlugins::VCloud::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Fabio Rapposelli', 'Timo Sugliani']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/frapposelli/vagrant-vcloud'
s.license = 'MIT'
s.summary = 'VMware vCloud Director® provider'
s.description = 'Enables Vagrant to manage machines with VMware vCloud Director®.'
s.add_runtime_dependency 'i18n', '~> 0.6.4'
s.add_runtime_dependency 'log4r', '~> 1.1.10'
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'httpclient', '~> 2.3.4.1'
s.add_runtime_dependency 'ruby-progressbar', '~> 1.1.1'
s.add_runtime_dependency 'netaddr', '~> 1.5.0'
# Adding awesome_print because it's just awesome to read XML
s.add_runtime_dependency 'awesome_print', '~> 1.2.0'
s.add_runtime_dependency 'terminal-table', '~> 1.4.5'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec-core', '~> 2.12.2'
s.add_development_dependency 'rspec-expectations', '~> 2.12.1'
s.add_development_dependency 'rspec-mocks', '~> 2.12.1'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_path = 'lib'
end