forked from rodjek/puppet-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
puppet-lint.gemspec
24 lines (20 loc) · 935 Bytes
/
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
$:.push File.expand_path("../lib", __FILE__)
require 'puppet-lint/version'
Gem::Specification.new do |s|
s.name = 'puppet-lint'
s.version = PuppetLint::VERSION
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.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-its', '~> 1.0'
s.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
s.authors = ['Tim Sharpe']
s.email = '[email protected]'
end