-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvoxpupuli-test.gemspec
44 lines (36 loc) · 1.62 KB
/
voxpupuli-test.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'voxpupuli-test'
s.version = '5.5.0'
s.authors = ['Vox Pupuli']
s.email = ['pmc@voxpupuli.org']
s.homepage = 'http://github.com/voxpupuli/voxpupuli-test'
s.summary = 'Helpers for testing Vox Pupuli modules'
s.description = 'A package that depends on all the gems Vox Pupuli modules need and methods to simplify spec helpers'
s.licenses = 'Apache-2.0'
s.files = Dir['lib/**/*.rb', 'rubocop.yml']
s.required_ruby_version = '>= 2.5.0'
s.add_runtime_dependency 'rake'
# Testing
s.add_runtime_dependency 'facterdb', '>= 1.4.0'
s.add_runtime_dependency 'metadata-json-lint', '>= 3.0.1'
s.add_runtime_dependency 'parallel_tests'
# 4.0.0 provides rubocop annotations in GitHub Actions
# 5.0.0 supports the validation of REFERENCE.md
s.add_runtime_dependency 'puppetlabs_spec_helper', '>= 5.0.3'
# lazy dependency of the `validate` task. Will check the REFERENCE.md
# 3.0.0 and later require Ruby 2.7
s.add_runtime_dependency 'puppet-strings', '>= 2.9', '< 4'
s.add_runtime_dependency 'rspec-puppet', '>= 2.11.0'
s.add_runtime_dependency 'rspec-puppet-facts', '>= 2.0.1', '< 3'
s.add_runtime_dependency 'rspec-puppet-utils', '>= 1.9.5'
# Rubocop
s.add_runtime_dependency 'rubocop', '~> 1.22.3'
s.add_runtime_dependency 'rubocop-rspec', '~> 2.5'
s.add_runtime_dependency 'rubocop-rake', '~> 0.6.0'
# Linting
# meta gem to pull in all puppet-lint plugins + puppet-lint itself
s.add_runtime_dependency 'voxpupuli-puppet-lint-plugins', '~> 3.0'
# development
s.add_development_dependency 'rspec'
end