-
Notifications
You must be signed in to change notification settings - Fork 2
/
chef-attribute-validator.gemspec
27 lines (23 loc) · 1.4 KB
/
chef-attribute-validator.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
# coding: utf-8 # -*-ruby-*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef-attribute-validator/version'
Gem::Specification.new do |spec|
spec.name = 'chef-attribute-validator'
spec.version = Chef::Attribute::Validator::VERSION
spec.authors = ['Clinton Wolfe']
spec.email = ['[email protected]']
spec.description = %q{Define, enforce, and handle violations of validation rules for Chef node attributes. This gem provides the validation engine, and can be used outside of a convergence run; a cookbook (attribute-validator) is available to perform validation during a chef run, at compile or converge time.}
spec.summary = %q{A Rubygem implementing a rule engine for validating Chef node attributes.}
spec.homepage = 'https://github.com/clintoncwolfe/chef-attribute-validator'
spec.license = 'BSD (3-clause)'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.6'
spec.add_development_dependency 'rubocop', '~> 0.49'
spec.add_runtime_dependency 'chef', '>= 11.6'
end