forked from puppetlabs/pdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdk.gemspec
44 lines (37 loc) · 1.81 KB
/
pdk.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pdk/version'
Gem::Specification.new do |spec|
spec.name = 'pdk'
spec.version = PDK::VERSION
spec.authors = ['Puppet, Inc.']
spec.email = ['[email protected]']
spec.summary = 'A key part of the Puppet Development Kit, the shortest path to better modules'
spec.description = 'A CLI to facilitate easy, unified development workflows for Puppet modules.'
spec.homepage = 'https://github.com/puppetlabs/pdk'
spec.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*', 'exe/**/*', 'locales/**/*']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.1.9'
spec.add_runtime_dependency 'bundler', '>= 1.15.0', '< 3.0.0'
spec.add_runtime_dependency 'childprocess', '~> 0.7.1'
spec.add_runtime_dependency 'cri', '~> 2.10'
spec.add_runtime_dependency 'diff-lcs', '1.3'
spec.add_runtime_dependency 'ffi', '~> 1.9.0'
spec.add_runtime_dependency 'gettext-setup', '~> 0.24'
spec.add_runtime_dependency 'hitimes', '1.3.0'
spec.add_runtime_dependency 'json-schema', '2.8.0'
spec.add_runtime_dependency 'json_pure', '~> 2.1.0'
spec.add_runtime_dependency 'minitar', '~> 0.6.1'
spec.add_runtime_dependency 'pathspec', '~> 0.2.1'
spec.add_runtime_dependency 'tty-prompt', '~> 0.13'
spec.add_runtime_dependency 'tty-spinner', '~> 0.5'
spec.add_runtime_dependency 'tty-which', '~> 0.3'
# Analytics dependencies
spec.add_runtime_dependency 'concurrent-ruby', '~> 1.1.5'
spec.add_runtime_dependency 'facter', '~> 2.5.1'
spec.add_runtime_dependency 'httpclient', '~> 2.8.3'
# Used in the pdk-templates
spec.add_runtime_dependency 'deep_merge', '~> 1.1'
end