-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathkitchen-pester.gemspec
More file actions
23 lines (19 loc) · 965 Bytes
/
kitchen-pester.gemspec
File metadata and controls
23 lines (19 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/verifier/pester_version"
Gem::Specification.new do |spec|
spec.name = "kitchen-pester"
spec.version = Kitchen::Verifier::PESTER_VERSION
spec.authors = ["Steven Murawski"]
spec.email = ["steven.murawski@gmail.com"]
spec.summary = "Test-Kitchen verifier for Pester."
spec.description = "Skip all that Busser stuff and jump right into Pester."
spec.homepage = "https://github.com/test-kitchen/kitchen-pester"
spec.license = "Apache-2.0"
spec.files = %w{LICENSE kitchen-pester.gemspec Gemfile Rakefile} + Dir.glob("lib/**/*")
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.3", "< 5.19"
spec.add_development_dependency "mocha", "~> 2.0"
spec.add_dependency "test-kitchen", ">= 1.10", "< 5"
end