forked from chefspec/chefspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chefspec.gemspec
29 lines (25 loc) · 1.19 KB
/
chefspec.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'chefspec/version'
Gem::Specification.new do |s|
s.name = 'chefspec'
s.version = ChefSpec::VERSION
s.authors = ['Andrew Crump', 'Seth Vargo']
s.email = ['andrew.crump@ieee.org', 'sethvargo@gmail.com']
s.summary = 'Write RSpec examples and generate coverage reports for ' \
'Chef recipes!'
s.description = 'ChefSpec is a unit testing and resource coverage ' \
'(code coverage) framework for testing Chef cookbooks ' \
'ChefSpec makes it easy to write examples and get fast ' \
'feedback on cookbook changes without the need for ' \
'virtual machines or cloud servers.'
s.homepage = 'https://github.com/chefspec/chefspec'
s.license = 'MIT'
# Packaging
s.files = %w{LICENSE} + Dir.glob("{lib,templates}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.2'
s.add_dependency 'chef', '>= 12.16.42'
s.add_dependency 'fauxhai', '>= 4'
s.add_dependency 'rspec', '~> 3.0'
end