-
Notifications
You must be signed in to change notification settings - Fork 87
/
vagrant-parallels.gemspec
30 lines (25 loc) · 1.18 KB
/
vagrant-parallels.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
# coding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'vagrant-parallels/version'
Gem::Specification.new do |spec|
spec.name = 'vagrant-parallels'
spec.version = VagrantPlugins::Parallels::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Mikhail Zholobov', 'Youssef Shahin']
spec.email = ['[email protected]', '[email protected]']
spec.summary = %q{Parallels provider for Vagrant.}
spec.description = %q{Enables Vagrant to manage Parallels virtual machines.}
spec.homepage = 'https://github.com/Parallels/vagrant-parallels'
spec.license = 'MIT'
spec.required_rubygems_version = '>= 1.3.6'
spec.rubyforge_project = 'vagrant-parallels'
spec.add_dependency 'nokogiri'
# Constraint rake to properly handle deprecated method usage
# from within rspec
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.11'
spec.add_development_dependency 'rspec-its', '~> 2.0.0'
spec.add_development_dependency 'webrick', '~> 1.9.0'
spec.files = Dir['lib/**/*', 'locales/**/*', 'README.md', 'CHANGELOG.md', 'LICENSE.txt']
spec.require_path = 'lib'
end