forked from mmerfort/puppet-lint-topscope-variable-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuppet-lint-topscope-variable-check.gemspec
More file actions
27 lines (26 loc) · 1.02 KB
/
puppet-lint-topscope-variable-check.gemspec
File metadata and controls
27 lines (26 loc) · 1.02 KB
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
Gem::Specification.new do |spec|
spec.name = 'puppet-lint-topscope-variable-check'
spec.version = '0.1.1'
spec.homepage = 'https://github.com/Sixt/puppet-lint-topscope-variable-check'
spec.license = 'MIT'
spec.author = 'Martin Merfort'
spec.email = 'martin.merfort@sixt.com'
spec.files = Dir[
'README.md',
'LICENSE',
'lib/**/*',
'spec/**/*',
]
spec.test_files = Dir['spec/**/*']
spec.summary = 'A puppet-lint plugin to check topscope variables.'
spec.description = <<-DESC
A puppet-lint plugin to check that topscope variable names don't start with ::.
DESC
spec.add_dependency 'puppet-lint', '~> 2.0'
spec.add_development_dependency 'coveralls', '~> 0.8'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
spec.add_development_dependency 'rspec-its', '~> 1.0'
spec.add_development_dependency 'rubocop', '~> 0.58'
end