mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
This reverts commit 34a0def7d1, because it
seems to be completely accidental change, when the file was overridden by
Bundler or so.
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/vagrant-libvirt/version', __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.authors = ['Lukas Stanek','Dima Vasilets','Brian Pitts']
|
|
s.email = ['ls@elostech.cz','pronix.service@gmail.com','brian@polibyte.com']
|
|
s.license = 'MIT'
|
|
s.description = %q{libvirt provider for Vagrant.}
|
|
s.summary = %q{libvirt provider for Vagrant.}
|
|
s.homepage = 'https://github.com/vagrant-libvirt/vagrant-libvirt'
|
|
|
|
s.files = `git ls-files`.split($\)
|
|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
s.name = 'vagrant-libvirt'
|
|
s.require_paths = ['lib']
|
|
s.version = VagrantPlugins::ProviderLibvirt::VERSION
|
|
|
|
s.add_development_dependency "rspec-core", "~> 3.5.0"
|
|
s.add_development_dependency "rspec-expectations", "~> 3.5.0"
|
|
s.add_development_dependency "rspec-mocks", "~> 3.5.0"
|
|
|
|
s.add_runtime_dependency 'fog-libvirt', '>= 0.3.0'
|
|
s.add_runtime_dependency 'nokogiri', '~> 1.6.0'
|
|
s.add_runtime_dependency 'fog-core', '~> 1.43.0'
|
|
|
|
s.add_development_dependency 'rake'
|
|
end
|