-
Notifications
You must be signed in to change notification settings - Fork 2
/
foreman_hyperv.gemspec
27 lines (21 loc) · 989 Bytes
/
foreman_hyperv.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
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'foreman_hyperv/version'
Gem::Specification.new do |spec|
spec.name = 'foreman_hyperv'
spec.version = ForemanHyperv::VERSION
spec.authors = ['Alexander Olofsson']
spec.email = ['[email protected]']
spec.summary = 'Hyper-V as a Compute Resource for Foreman'
spec.description = 'Hyper-V as a Compute Resource for Foreman'
spec.homepage = 'https://github.com/ananace/foreman_hyperv'
spec.license = 'GPL-3.0'
spec.files = Dir['{app,config,db,lib,locale}/**/*']+%w[LICENSE.txt Rakefile README.md]
spec.test_files = spec.files.grep(%r{^test\/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'fog-hyperv', '~> 0.0.2'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest'
end