mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
26 lines
1016 B
Ruby
26 lines
1016 B
Ruby
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/vagrant-libvirt/version', __FILE__)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.authors = ['Lukas Stanek','Dima Vasilets','Brian Pitts']
|
|
gem.email = ['ls@elostech.cz','pronix.service@gmail.com','brian@polibyte.com']
|
|
gem.license = 'MIT'
|
|
gem.description = %q{Vagrant provider for libvirt.}
|
|
gem.summary = %q{Vagrant provider for libvirt.}
|
|
gem.homepage = 'https://github.com/pradels/vagrant-libvirt'
|
|
|
|
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)/})
|
|
gem.name = 'vagrant-libvirt'
|
|
gem.require_paths = ['lib']
|
|
gem.version = VagrantPlugins::ProviderLibvirt::VERSION
|
|
|
|
gem.add_runtime_dependency 'fog', '~> 1.15'
|
|
gem.add_runtime_dependency 'ruby-libvirt', '~> 0.4.0'
|
|
gem.add_runtime_dependency 'nokogiri', '~> 1.5.9'
|
|
|
|
gem.add_development_dependency 'rake'
|
|
end
|
|
|