forked from pradels/vagrant-ovirt
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvagrant-ovirt3.gemspec
24 lines (19 loc) · 989 Bytes
/
vagrant-ovirt3.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/vagrant-ovirt3/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Marcus Young"]
gem.email = ["[email protected]"]
gem.description = %q{Vagrant provider for oVirt and RHEV v3}
gem.summary = %q{This vagrant plugin provides the ability to create, control, and destroy virtual machines under oVirt/RHEV}
gem.homepage = "https://github.com/myoung34/vagrant-ovirt3"
gem.licenses = ['MIT']
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-ovirt3"
gem.require_paths = ["lib"]
gem.version = VagrantPlugins::OVirtProvider::VERSION
gem.add_runtime_dependency "fog", "~> 1.27"
gem.add_runtime_dependency 'rbovirt', '~> 0.0', '= 0.0.32'
gem.add_development_dependency 'rake', '~> 0'
end