-
Notifications
You must be signed in to change notification settings - Fork 36
/
vagrant-vcenter.gemspec
31 lines (27 loc) · 1.16 KB
/
vagrant-vcenter.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
# encoding: UTF-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'vagrant-vcenter/version'
Gem::Specification.new do |s|
s.name = 'vagrant-vcenter'
s.version = VagrantPlugins::VCenter::VERSION
s.platform = Gem::Platform::RUBY
s.authors = 'Fabio Rapposelli'
s.email = '[email protected]'
s.homepage = 'https://github.com/frapposelli/vagrant-vcenter'
s.license = 'MIT'
s.summary = 'VMware vCenter® Vagrant provider'
s.description = 'Enables Vagrant to manage machines with VMware vCenter®.'
s.add_runtime_dependency 'vagrant-rbvmomi', '~> 1.8.1'
s.add_runtime_dependency 'log4r', '~> 1.1.10'
s.add_development_dependency 'bundler'
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.add_development_dependency 'rubocop'
s.add_development_dependency 'code-scanning-rubocop', '~> 0.5'
s.files = `git ls-files`.split($RS)
s.executables = s.files.grep(/^bin/) { |f| File.basename(f) }
s.test_files = s.files.grep(/^(test|spec|features)/)
s.require_path = 'lib'
end