-
Notifications
You must be signed in to change notification settings - Fork 22
/
puppetdb_foreman.gemspec
31 lines (25 loc) · 1.14 KB
/
puppetdb_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
# frozen_string_literal: true
require File.expand_path('lib/puppetdb_foreman/version', __dir__)
Gem::Specification.new do |s|
s.name = 'puppetdb_foreman'
s.version = PuppetdbForeman::VERSION
s.license = 'GPL-3.0'
s.summary = 'This is a Foreman plugin to interact with PuppetDB.'
s.description = <<-DESC
Disable hosts on PuppetDB after they are deleted or built in Foreman.
Follow https://github.com/theforeman/puppetdb_foreman and raise an
issue/submit a pull request if you need extra functionality. You can also
find some help via the Foreman support pages
(https://theforeman.org/support.html).
DESC
s.authors = ['Daniel Lobato Garcia']
s.email = '[email protected]'
s.files = Dir['{app,db,config,lib}/**/*'] + ['LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['test/**/*']
s.homepage = 'http://www.github.com/theforeman/puppetdb_foreman'
s.add_development_dependency 'rake'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'theforeman-rubocop', '~> 0.1.2'
s.add_development_dependency 'webmock'
s.required_ruby_version = '>= 2.7', '< 4'
end