-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpuppet-retrospec.gemspec
32 lines (30 loc) · 1.36 KB
/
puppet-retrospec.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
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'retrospec/plugins/v1/plugin/version'
Gem::Specification.new do |s|
s.name = "puppet-retrospec"
s.version = Retrospec::Puppet::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Corey Osman"]
s.date = Time.now.strftime("%Y-%m-%d")
s.description = "Retrofits and generates valid puppet rspec test code to existing modules"
s.email = "[email protected]"
s.extra_rdoc_files = [
"CHANGELOG.md",
"LICENSE",
"README.md"
]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(coverage)/}) }
s.homepage = "http://github.com/nwops/puppet-retrospec"
s.licenses = ["MIT"]
s.rubygems_version = "2.4.5.1"
s.summary = "Generates puppet rspec test code based on the classes and defines inside the manifests directory. Aims to reduce some of the boilerplate coding with default test patterns."
s.add_runtime_dependency(%q<optimist>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<retrospec>, ["~> 0.7.0"])
s.add_runtime_dependency(%q<awesome_print>, [">= 0"])
s.add_runtime_dependency(%q<facets>, [">= 0"])
s.add_development_dependency(%q<rdoc>, "~> 6.4")
s.add_development_dependency(%q<pry>, [">= 0"])
end