forked from voxpupuli/puppet-lint-strict_indent-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuppet-lint-strict_indent-check.gemspec
More file actions
27 lines (26 loc) · 1015 Bytes
/
puppet-lint-strict_indent-check.gemspec
File metadata and controls
27 lines (26 loc) · 1015 Bytes
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-strict_indent-check'
spec.version = '2.0.7'
spec.homepage = 'https://github.com/voxpupuli/puppet-lint-strict_indent-check'
spec.license = 'Mozilla 2.0'
spec.author = 'Vox Pupuli'
spec.email = 'voxpupuli@groups.io'
spec.files = Dir[
'README.md',
'LICENSE',
'lib/**/*',
'spec/**/*',
]
spec.test_files = Dir['spec/**/*']
spec.summary = 'puppet-lint strict indent check'
spec.description = <<-EOF
Extends puppet-lint to ensure that your manifests follow a strict indentation pattern.
EOF
spec.add_dependency 'puppet-lint', '> 1.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec-its', '~> 1.0'
spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
spec.add_development_dependency 'rspec-json_expectations'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'simplecov'
end