This repository has been archived by the owner on Jun 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfacter.gemspec
50 lines (41 loc) · 1.78 KB
/
facter.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
45
46
47
48
49
50
# frozen_string_literal: true
lib = File.expand_path('../lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative 'config/config'
Gem::Specification.new do |spec|
spec.name = 'facter'
spec.version = FACTER_VERSION
spec.authors = ['Puppet']
spec.email = ['[email protected]']
spec.summary = 'New version of Facter'
spec.description = 'New version of Facter'
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
# On our internal Jenkins, there is no git. As it is a clean machine, we don't need to worry about anything else.
spec.files = if system('git --help > /dev/null')
`git ls-files -z`.split("\x0")
else
Dir.glob('**/*')
end
spec.required_ruby_version = '~> 2.3'
spec.files.reject! do |f|
f.match(%r{^(test|spec|features)/})
end
spec.files.reject! do |f|
f == 'bin/facter-ng'
end
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'coveralls', '~> 0.8.23'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.81.0'
spec.add_development_dependency 'rubocop-performance', '~> 1.5'
spec.add_development_dependency 'rubocop-rspec', '~> 1.38'
spec.add_development_dependency 'sys-filesystem', '~> 1.3'
spec.add_development_dependency 'yard', '~> 0.9'
spec.add_runtime_dependency 'hocon', '~> 1.3'
spec.add_runtime_dependency 'thor', ['>= 1.0.1', '< 2.0']
end