2013-03-27 00:55:30 +01: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-15 02:10:07 +02:00
|
|
|
gem.license = 'MIT'
|
2015-01-26 14:44:39 +01:00
|
|
|
gem.description = %q{libvirt provider for Vagrant.}
|
|
|
|
|
gem.summary = %q{libvirt provider for Vagrant.}
|
2014-02-01 22:20:03 +01:00
|
|
|
gem.homepage = 'https://github.com/pradels/vagrant-libvirt'
|
2013-03-27 00:55:30 +01: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 22:53:18 +02:00
|
|
|
gem.name = 'vagrant-libvirt'
|
|
|
|
|
gem.require_paths = ['lib']
|
2013-07-31 09:20:43 +09:00
|
|
|
gem.version = VagrantPlugins::ProviderLibvirt::VERSION
|
2013-03-27 00:55:30 +01:00
|
|
|
|
2014-10-16 01:39:07 +01:00
|
|
|
gem.add_development_dependency "rspec-core", "~> 2.12.2"
|
|
|
|
|
gem.add_development_dependency "rspec-expectations", "~> 2.12.1"
|
|
|
|
|
gem.add_development_dependency "rspec-mocks", "~> 2.12.1"
|
2014-07-04 10:47:29 -06:00
|
|
|
|
2014-10-16 01:39:07 +01:00
|
|
|
gem.add_runtime_dependency 'fog', '~> 1.15'
|
2014-10-21 00:39:40 +01:00
|
|
|
gem.add_runtime_dependency 'ruby-libvirt', '~> 0.4'
|
2014-09-28 10:48:28 -05:00
|
|
|
gem.add_runtime_dependency 'nokogiri', '~> 1.6.0'
|
2013-03-27 00:55:30 +01:00
|
|
|
|
2014-10-16 01:39:07 +01:00
|
|
|
gem.add_development_dependency 'rake'
|
2013-03-27 00:55:30 +01:00
|
|
|
end
|
|
|
|
|
|