forked from vagrant-libvirt/vagrant-libvirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagrant-libvirt.gemspec
34 lines (28 loc) · 1.42 KB
/
vagrant-libvirt.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
require File.expand_path('../lib/vagrant-libvirt/version', __FILE__)
Gem::Specification.new do |s|
s.authors = ['Lukas Stanek','Dima Vasilets','Brian Pitts','Darragh Bailey']
s.license = 'MIT'
s.description = %q{libvirt provider for Vagrant.}
s.summary = %q{libvirt provider for Vagrant.}
s.homepage = VagrantPlugins::ProviderLibvirt::HOMEPAGE
s.files = Dir.glob("{lib,locales}/**/*") + %w(LICENSE README.md)
s.executables = Dir.glob("bin/*.*").map{ |f| File.basename(f) }
s.test_files = Dir.glob("{test,spec,features}/**/*.*")
s.name = 'vagrant-libvirt'
s.require_paths = ['lib']
s.version = VagrantPlugins::ProviderLibvirt.get_version
s.add_development_dependency "rspec-core", ">= 3.5"
s.add_development_dependency "rspec-expectations", ">= 3.5"
s.add_development_dependency "rspec-mocks", ">= 3.5"
s.add_development_dependency "simplecov"
s.add_development_dependency "simplecov-lcov"
s.add_runtime_dependency 'fog-libvirt', '>= 0.6.0'
s.add_runtime_dependency 'fog-core', '~> 2.1'
s.add_runtime_dependency 'rexml'
# Make sure to allow use of the same version as Vagrant by being less specific
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_development_dependency 'rake'
end