2013-03-26 18:55:30 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2021-06-30 07:27:03 -05:00
|
|
|
# frozen_string_literal: true
|
2018-12-02 15:56:50 -06:00
|
|
|
require File.expand_path('../lib/vagrant-libvirt/version', __FILE__)
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2018-02-02 11:49:20 -06:00
|
|
|
Gem::Specification.new do |s|
|
2021-05-27 11:09:32 -05:00
|
|
|
s.authors = ['Lukas Stanek','Dima Vasilets','Brian Pitts','Darragh Bailey']
|
|
|
|
s.email = ['ls@elostech.cz','pronix.service@gmail.com','brian@polibyte.com','daragh.bailey@gmail.com']
|
2018-12-02 15:56:50 -06:00
|
|
|
s.license = 'MIT'
|
|
|
|
s.description = %q{libvirt provider for Vagrant.}
|
|
|
|
s.summary = %q{libvirt provider for Vagrant.}
|
2020-12-14 12:49:50 -06:00
|
|
|
s.homepage = VagrantPlugins::ProviderLibvirt::HOMEPAGE
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2020-10-23 12:18:52 -05:00
|
|
|
s.files = Dir.glob("{lib,locales}/**/*") + %w(LICENSE README.md)
|
2020-03-27 13:52:02 -05:00
|
|
|
s.executables = Dir.glob("bin/*.*").map{ |f| File.basename(f) }
|
|
|
|
s.test_files = Dir.glob("{test,spec,features}/**/*.*")
|
2018-12-02 15:56:50 -06:00
|
|
|
s.name = 'vagrant-libvirt'
|
|
|
|
s.require_paths = ['lib']
|
2020-12-14 12:49:50 -06:00
|
|
|
s.version = VagrantPlugins::ProviderLibvirt.get_version
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2021-08-03 06:28:50 -05:00
|
|
|
s.add_development_dependency "rspec-core", ">= 3.5"
|
|
|
|
s.add_development_dependency "rspec-expectations", ">= 3.5"
|
|
|
|
s.add_development_dependency "rspec-mocks", ">= 3.5"
|
2020-12-15 07:15:06 -06:00
|
|
|
s.add_development_dependency "simplecov"
|
2021-02-20 09:23:16 -06:00
|
|
|
s.add_development_dependency "simplecov-lcov"
|
2014-07-04 11:47:29 -05:00
|
|
|
|
2019-07-17 10:43:35 -05:00
|
|
|
s.add_runtime_dependency 'fog-libvirt', '>= 0.6.0'
|
2019-02-07 09:27:20 -06:00
|
|
|
s.add_runtime_dependency 'fog-core', '~> 2.1'
|
2021-05-12 15:02:46 -05:00
|
|
|
s.add_runtime_dependency 'rexml'
|
2013-03-26 18:55:30 -05:00
|
|
|
|
2017-04-27 07:51:28 -05:00
|
|
|
# Make sure to allow use of the same version as Vagrant by being less specific
|
|
|
|
s.add_runtime_dependency 'nokogiri', '~> 1.6'
|
|
|
|
|
2018-12-02 15:56:50 -06:00
|
|
|
s.add_development_dependency 'rake'
|
2013-03-26 18:55:30 -05:00
|
|
|
end
|