-
Notifications
You must be signed in to change notification settings - Fork 56
/
puppet_litmus.gemspec
35 lines (33 loc) · 1.36 KB
/
puppet_litmus.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'puppet_litmus/version'
Gem::Specification.new do |spec|
spec.name = 'puppet_litmus'
spec.version = PuppetLitmus::VERSION
spec.homepage = 'https://github.com/puppetlabs/puppet_litmus'
spec.license = 'Apache-2.0'
spec.authors = ['Puppet, Inc.']
spec.email = ['info@puppet.com']
spec.files = Dir[
'README.md',
'LICENSE',
'exe/**/*',
'lib/**/*',
'spec/**/*',
]
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.description = <<-EOF
Providing a simple command line tool for puppet content creators, to enable simple and complex test deployments.
EOF
spec.summary = 'Providing a simple command line tool for puppet content creators, to enable simple and complex test deployments.'
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
spec.add_runtime_dependency 'bolt', '~> 3.0'
spec.add_runtime_dependency 'docker-api', '>= 1.34', '< 3.0.0'
spec.add_runtime_dependency 'parallel'
spec.add_runtime_dependency 'puppet-modulebuilder', '>= 0.3.0'
spec.add_runtime_dependency 'retryable', '~> 3.0'
spec.add_runtime_dependency 'rspec'
spec.add_runtime_dependency 'tty-spinner', ['>= 0.5.0', '< 1.0.0']
end