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