Sha256: aef82d3721d4c31f7d6529af6f4607b50befe6c13ca7c82a889aa0dc4ebcef43
Contents?: true
Size: 1.11 KB
Versions: 6
Compression:
Stored size: 1.11 KB
Contents
lib = File.expand_path("../lib", __FILE__) $:.unshift(lib) unless $:.include?(lib) require "fauxhai/version" Gem::Specification.new do |spec| spec.name = "fauxhai-ng" spec.version = Fauxhai::VERSION spec.authors = ["Seth Vargo", "Tim Smith"] spec.email = ["sethvargo@gmail.com", "tsmith84@gmail.com"] 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/chefspec/fauxhai" spec.license = "MIT" spec.required_ruby_version = ">= 2.3" spec.files = %w{LICENSE Gemfile fauxhai-ng.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_development_dependency "chef", ">= 13.0" spec.add_development_dependency "ohai", ">= 13.0" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.7" spec.add_development_dependency "rspec-its", "~> 1.2" end
Version data entries
6 entries across 6 versions & 1 rubygems