forked from puppetlabs/pdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdk.gemspec
39 lines (32 loc) · 1.53 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$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'
spec.add_runtime_dependency 'cri', '~> 2.10.1'
spec.add_runtime_dependency 'childprocess', '~> 0.7.1'
spec.add_runtime_dependency 'gettext-setup', '~> 0.24'
spec.add_runtime_dependency 'tty-spinner', '0.5.0'
spec.add_runtime_dependency 'tty-prompt', '0.13.1'
spec.add_runtime_dependency 'json_pure', '~> 2.1.0'
spec.add_runtime_dependency 'json-schema', '2.8.0'
spec.add_runtime_dependency 'tty-which', '0.3.0'
spec.add_runtime_dependency 'diff-lcs', '1.3'
spec.add_runtime_dependency 'minitar', '~> 0.6.1'
spec.add_runtime_dependency 'pathspec', '~> 0.2.1'
# Used in the pdk-templates
spec.add_runtime_dependency 'deep_merge', '~> 1.1'
end