forked from chefspec/fauxhai
-
Notifications
You must be signed in to change notification settings - Fork 10
/
fauxhai-chef.gemspec
28 lines (23 loc) · 1.11 KB
/
fauxhai-chef.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
lib = File.expand_path("../lib", __FILE__)
$:.unshift(lib) unless $:.include?(lib)
require "fauxhai/version"
Gem::Specification.new do |spec|
spec.name = "fauxhai-chef"
spec.version = Fauxhai::VERSION
spec.authors = ["Seth Vargo", "Tim Smith"]
spec.email = ["[email protected]", "[email protected]"]
spec.description = "Easily mock out ohai data"
spec.summary = "Fauxhai provides an easy way to mock out your ohai data for testing with chefspec!"
spec.homepage = "https://github.com/chef/fauxhai"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7"
spec.files = %w{LICENSE Gemfile fauxhai-chef.gemspec} + Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.executables = "fauxhai"
spec.require_paths = ["lib"]
spec.add_runtime_dependency "net-ssh"
spec.add_runtime_dependency "ohai", ">= 13.0"
spec.add_development_dependency "chef", ">= 13.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.7"
spec.add_development_dependency "rspec-its", "~> 1.2"
end