forked from vmware-archive/rbvmomi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbvmomi.gemspec
33 lines (25 loc) · 1.09 KB
/
rbvmomi.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
# Copyright (c) 2016-2017 VMware, Inc. All Rights Reserved.
# SPDX-License-Identifier: MIT
$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__))
require 'rbvmomi/version'
Gem::Specification.new do |spec|
spec.name = 'rbvmomi'
spec.summary = 'Ruby interface to the VMware vSphere API'
spec.version = RbVmomi::VERSION
spec.authors = ['Rich Lane', 'Christian Dickmann']
spec.email = '[email protected]'
spec.homepage = 'https://github.com/vmware/rbvmomi'
spec.license = 'MIT'
spec.bindir = 'exe'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(/^test\//) }
spec.executables << 'rbvmomish'
spec.add_runtime_dependency('builder', '~> 3.0')
spec.add_runtime_dependency('json', '>= 1.8')
spec.add_runtime_dependency('nokogiri', '~> 1.5')
spec.add_runtime_dependency('trollop', '~> 2.1')
spec.add_development_dependency('rake', '~> 10.5')
spec.add_development_dependency('simplecov', '~> 0.12.0')
spec.add_development_dependency('yard', '~> 0.9.5')
spec.add_development_dependency('test-unit', '>= 2.5')
spec.required_ruby_version = '>= 1.8.7'
end