This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
ovirt.gemspec
39 lines (32 loc) · 1.62 KB
/
ovirt.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
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ovirt/version'
Gem::Specification.new do |spec|
# Dynamically create the authors information {name => e-mail}
authors_hash = Hash[`git log --no-merges --reverse --format='%an,%ae'`.split("\n").uniq.collect {|i| i.split(",")}]
spec.name = "ovirt"
spec.version = Ovirt::VERSION
spec.authors = authors_hash.keys
spec.email = authors_hash.values
spec.description = %q{Ovirt provides a simple Object Oriented interface to the REST API of oVirt and RHEV-M servers.}
spec.summary = %q{Ovirt provides a simple Object Oriented interface to the REST API of oVirt and RHEV-M servers.}
spec.homepage = "http://github.com/ManageIQ/ovirt"
spec.license = "Apache-2.0"
spec.files = `git ls-files -- lib/*`.split("\n")
spec.files += %w[README.md LICENSE.txt]
spec.executables = `git ls-files -- bin/*`.split("\n")
spec.test_files = `git ls-files -- spec/*`.split("\n")
spec.test_files += %w[.rspec]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"
spec.add_dependency "more_core_extensions", ">= 3.0.0"
spec.add_dependency "nokogiri", ">= 1.10.8"
spec.add_dependency "rest-client", ">= 2.0.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "factory_bot", "~> 5.1"
spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "simplecov", ">= 0.21.2"
end