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|
|
2013-08-14 19:10:07 -05:00
|
|
|
gem.authors = ['Lukas Stanek','Dima Vasilets']
|
|
|
|
gem.email = ['ls@elostech.cz','pronix.service@gmail.com']
|
|
|
|
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.}
|
2013-04-11 10:20:42 -05: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)/})
|
|
|
|
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
|
|
|
|
2013-08-14 19:01:08 -05:00
|
|
|
gem.add_runtime_dependency "fog", "1.10.0"
|
2013-03-26 18:55:30 -05:00
|
|
|
gem.add_runtime_dependency "ruby-libvirt", "~> 0.4.0"
|
|
|
|
|
|
|
|
gem.add_development_dependency "rake"
|
|
|
|
end
|
|
|
|
|