forked from nsidc/vagrant-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vSphere.gemspec
30 lines (26 loc) · 1.14 KB
/
vSphere.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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'vSphere/version'
Gem::Specification.new do |s|
s.name = 'vagrant-vsphere'
s.version = VagrantPlugins::VSphere::VERSION
s.authors = ['Andrew Grauch']
s.email = ['[email protected]']
s.homepage = ''
s.license = 'MIT'
s.summary = 'VMWare vSphere provider'
s.description = 'Enables Vagrant to manage machines with VMWare vSphere.'
# force the use of Nokogiri 1.5.x to prevent conflicts with older versions of zlib
s.add_dependency 'nokogiri', '~>1.5'
# force the use of rbvmomi 1.6.x to get around this issue: https://github.com/vmware/rbvmomi/pull/32
s.add_dependency 'rbvmomi', '~> 1.6.0'
s.add_dependency 'i18n', '~> 0.6.4'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec-core'
s.add_development_dependency 'rspec-expectations'
s.add_development_dependency 'rspec-mocks'
s.add_development_dependency 'rubocop', '~> 0.28'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
s.test_files = s.files.grep(/^(test|spec|features)\//)
s.require_path = 'lib'
end