forked from rodjek/puppet-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
puppet-lint.gemspec
41 lines (38 loc) · 1.39 KB
/
puppet-lint.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
Gem::Specification.new do |s|
s.name = 'puppet-lint'
s.version = '0.1.12'
s.homepage = 'https://github.com/rodjek/puppet-lint/'
s.summary = 'Ensure your Puppet manifests conform with the Puppetlabs style guide'
s.description = 'Checks your Puppet manifests against the Puppetlabs
style guide and alerts you to any discrepancies.'
s.executables = ['puppet-lint']
s.files = [
'bin/puppet-lint',
'lib/puppet-lint/configuration.rb',
'lib/puppet-lint/plugin.rb',
'lib/puppet-lint/plugins/check_classes.rb',
'lib/puppet-lint/plugins/check_conditionals.rb',
'lib/puppet-lint/plugins/check_resources.rb',
'lib/puppet-lint/plugins/check_strings.rb',
'lib/puppet-lint/plugins/check_variables.rb',
'lib/puppet-lint/plugins/check_whitespace.rb',
'lib/puppet-lint/plugins.rb',
'lib/puppet-lint/tasks/puppet-lint.rb',
'lib/puppet-lint.rb',
'LICENSE',
'puppet-lint.gemspec',
'Rakefile',
'README.md',
'spec/puppet-lint/check_classes_spec.rb',
'spec/puppet-lint/check_conditionals_spec.rb',
'spec/puppet-lint/check_resources_spec.rb',
'spec/puppet-lint/check_strings_spec.rb',
'spec/puppet-lint/check_variables_spec.rb',
'spec/puppet-lint/check_whitespace_spec.rb',
'spec/spec_helper.rb',
]
s.add_development_dependency 'rspec'
s.add_development_dependency 'rdoc'
s.authors = ['Tim Sharpe']
s.email = '[email protected]'
end