2013-03-26 18:55:30 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-12-02 15:56:50 -06:00
|
|
|
require File.expand_path('../lib/vagrant-libvirt/version', __FILE__)
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2018-02-02 11:49:20 -06:00
|
|
|
Gem::Specification.new do |s|
|
2018-12-02 15:56:50 -06:00
|
|
|
s.authors = ['Lukas Stanek','Dima Vasilets','Brian Pitts']
|
|
|
|
s.email = ['ls@elostech.cz','pronix.service@gmail.com','brian@polibyte.com']
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.description = %q{libvirt provider for Vagrant.}
|
|
|
|
s.summary = %q{libvirt provider for Vagrant.}
|
|
|
|
s.homepage = 'https://github.com/vagrant-libvirt/vagrant-libvirt'
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2018-10-23 04:19:27 -05:00
|
|
|
s.files = `git ls-files`.split($\)
|
2018-12-02 15:56:50 -06:00
|
|
|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
2018-10-23 04:19:27 -05:00
|
|
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
2018-12-02 15:56:50 -06:00
|
|
|
s.name = 'vagrant-libvirt'
|
|
|
|
s.require_paths = ['lib']
|
|
|
|
s.version = VagrantPlugins::ProviderLibvirt::VERSION
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2018-12-02 15:56:50 -06:00
|
|
|
s.add_development_dependency "rspec-core", "~> 3.5.0"
|
|
|
|
s.add_development_dependency "rspec-expectations", "~> 3.5.0"
|
|
|
|
s.add_development_dependency "rspec-mocks", "~> 3.5.0"
|
2014-07-04 11:47:29 -05:00
|
|
|
|
2018-12-02 15:56:50 -06:00
|
|
|
s.add_runtime_dependency 'fog-libvirt', '>= 0.3.0'
|
|
|
|
s.add_runtime_dependency 'nokogiri', '~> 1.6.0'
|
|
|
|
s.add_runtime_dependency 'fog-core', '~> 1.43.0'
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2018-12-02 15:56:50 -06:00
|
|
|
s.add_development_dependency 'rake'
|
2013-03-26 18:55:30 -05:00
|
|
|
end
|