forked from voxpupuli/voxpupuli-test
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
voxpupuli-test.gemspec
39 lines (33 loc) · 1.59 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'voxpupuli-test'
s.version = '0.1.0'
s.authors = ['Vox Pupuli']
s.email = ['support@voxpupuli.org']
s.homepage = 'http://github.com/voxpupuli/voxpupuli-test-gem'
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']
s.add_runtime_dependency 'rake'
# Testing
s.add_runtime_dependency 'metadata-json-lint'
s.add_runtime_dependency 'parallel_tests'
s.add_runtime_dependency 'puppetlabs_spec_helper', '>= 2.14.0'
s.add_runtime_dependency 'rspec-puppet-facts', '>= 1.9.5'
s.add_runtime_dependency 'rspec-puppet-utils', '>= 1.9.5'
# Rubocop
s.add_runtime_dependency 'rubocop', '~> 0.49.1'
s.add_runtime_dependency 'rubocop-rspec', '1.15.0'
# Linting
s.add_runtime_dependency 'puppet-lint-absolute_classname-check', '>= 2.0.0'
s.add_runtime_dependency 'puppet-lint-anchor-check'
s.add_runtime_dependency 'puppet-lint-classes_and_types_beginning_with_digits-check'
s.add_runtime_dependency 'puppet-lint-leading_zero-check'
s.add_runtime_dependency 'puppet-lint-legacy_facts-check'
s.add_runtime_dependency 'puppet-lint-topscope-variable-check'
s.add_runtime_dependency 'puppet-lint-trailing_comma-check'
s.add_runtime_dependency 'puppet-lint-unquoted_string-check'
s.add_runtime_dependency 'puppet-lint-variable_contains_upcase'
s.add_runtime_dependency 'puppet-lint-version_comparison-check'
end