forked from theforeman/hammer-cli-foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hammer_cli_foreman.gemspec
32 lines (25 loc) · 1.05 KB
/
hammer_cli_foreman.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
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "hammer_cli_foreman/version"
Gem::Specification.new do |s|
s.name = "hammer_cli_foreman"
s.version = HammerCLIForeman.version.dup
s.platform = Gem::Platform::RUBY
s.authors = ["Tomáš Strachota", "Martin Bačovský"]
s.email = "[email protected]"
s.homepage = "https://github.com/theforeman/hammer-cli-foreman"
s.license = "GPL-3.0+"
s.summary = %q{Foreman commands for Hammer}
s.description = <<EOF
Foreman commands for Hammer CLI
EOF
locales = Dir['locale/*'].select { |f| File.directory?(f) }
s.files = Dir['{lib,doc,test,config}/**/*', 'LICENSE', 'README*'] +
locales.map { |loc| "#{loc}/LC_MESSAGES/hammer-cli-foreman.mo" }
s.test_files = Dir['{test}/**/*']
s.extra_rdoc_files = Dir['{doc}/**/*', 'README*']
s.require_paths = ["lib"]
s.add_dependency 'hammer_cli', '>= 0.15.0'
s.add_dependency 'apipie-bindings', '>= 0.2.2'
s.add_dependency 'rest-client', '>= 1.8.0', '< 3.0.0'
end