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|
|
|
|
|
|
gem.authors = ["Lukas Stanek"]
|
|
|
|
|
gem.email = ["ls@elostech.cz"]
|
|
|
|
|
gem.description = %q{Vagrant provider for libvirt.}
|
|
|
|
|
gem.summary = %q{Vagrant provider for libvirt.}
|
2013-04-11 17:20:42 +02: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)/})
|
|
|
|
|
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
|
|
|
|
2013-08-15 02:01:08 +02:00
|
|
|
gem.add_runtime_dependency "fog", "1.10.0"
|
2013-03-27 00:55:30 +01:00
|
|
|
gem.add_runtime_dependency "ruby-libvirt", "~> 0.4.0"
|
|
|
|
|
|
|
|
|
|
gem.add_development_dependency "rake"
|
|
|
|
|
end
|
|
|
|
|
|