forked from Katello/hammer-cli-katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hammer_cli_katello.gemspec
65 lines (58 loc) · 1.89 KB
/
hammer_cli_katello.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__))
require 'hammer_cli_katello/version'
Gem::Specification.new do |gem|
gem.authors = [
"Adam Price",
"Adam Ruzicka",
"Andrew Kofink",
"Brad Buckingham",
"Bryan Kearney",
"Chris Duryee",
"Christine Fouant",
"Daniel Lobato García",
"David Davis",
"Dustin Tsang",
"Eric D. Helms",
"Ivan Nečas",
"Jason L Connor",
"Jason Montleon",
"John Mitsch",
"Justin Sherrill",
"Martin Bačovský",
"Michaux Kelley",
"Og Maciel",
"Partha Aji",
"Pavel Moravec",
"Roman Plevka",
"Stephen Benjamin",
"Tomas Strachota",
"Tom McKay",
"Walden Raines",
"Zach Huntington-Meath"
]
gem.email = ['[email protected]']
gem.license = "GPL-3.0"
gem.description = 'Hammer-CLI-Katello is a plugin for Hammer to provide' \
' connectivity to a Katello server.'
gem.summary = 'Katello commands for Hammer'
gem.homepage = 'https://github.com/Katello/hammer-cli-katello'
gem.files = Dir['config/**/*', 'lib/**/*.rb', 'locale/**/**']
gem.test_files = `git ls-files -- {test,spec,features}/*`.split($ORS)
gem.name = 'hammer_cli_katello'
gem.require_paths = ['lib']
gem.version = HammerCLIKatello.version
gem.add_dependency 'hammer_cli_foreman'
gem.add_dependency 'hammer_cli_foreman_tasks'
gem.add_dependency 'hammer_cli_foreman_bootdisk'
gem.add_dependency 'hammer_cli_foreman_docker'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'thor'
gem.add_development_dependency 'minitest', '4.7.4'
gem.add_development_dependency 'minitest-spec-context'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'ci_reporter'
gem.add_development_dependency "rubocop", "0.42"
gem.add_development_dependency "rubocop-checkstyle_formatter"
end