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'
|
2013-03-26 18:55:30 -05:00
|
|
|
gem.description = %q{Vagrant provider for libvirt.}
|
|
|
|
gem.summary = %q{Vagrant provider for libvirt.}
|
2014-02-01 15:20:03 -06:00
|
|
|
gem.homepage = 'https://github.com/pradels/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
|
|
|
|
2014-01-23 12:43:46 -06:00
|
|
|
gem.add_runtime_dependency 'fog', '~> 1.15'
|
2014-01-05 17:57:18 -06:00
|
|
|
gem.add_runtime_dependency 'ruby-libvirt', '~> 0.4.0'
|
2014-01-23 12:43:46 -06:00
|
|
|
gem.add_runtime_dependency 'nokogiri', '~> 1.5.9'
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2013-09-25 15:53:18 -05:00
|
|
|
gem.add_development_dependency 'rake'
|
2013-03-26 18:55:30 -05:00
|
|
|
end
|
|
|
|
|