forked from customink/strainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrainer.gemspec
24 lines (20 loc) · 1.01 KB
/
strainer.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
$:.unshift File.expand_path('../lib', __FILE__)
require 'strainer/version'
Gem::Specification.new do |gem|
gem.version = Strainer::VERSION
gem.authors = ['Seth Vargo']
gem.email = ['[email protected]']
gem.description = %q{Run isolated cookbook tests against your chef repository with Strainer.}
gem.summary = %q{Strainer allows you to run cookbook tests in an isolated environment while still keeping a single Gemfile and repository for all your cookbooks.}
gem.homepage = 'https://github.com/customink/strainer'
gem.license = 'Apache 2.0'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'strainer'
gem.require_paths = ['lib']
gem.add_runtime_dependency 'berkshelf', '~> 2.0'
gem.add_development_dependency 'redcarpet'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'rake'
end