Sha256: c3d9180fc904ba170f3732d858364000434ba0c9deb28283df4d3e10aa4f54c1

Contents?: true

Size: 1009 Bytes

Versions: 4

Compression:

Stored size: 1009 Bytes

Contents

lib = File.expand_path('../lib', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
require 'fauxhai/version'

Gem::Specification.new do |spec|
  spec.name          = 'fauxhai'
  spec.version       = Fauxhai::VERSION
  spec.authors       = ['Seth Vargo']
  spec.email         = ['sethvargo@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.2.2'

  spec.files         = `git ls-files`.split($\)
  spec.executables   = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'net-ssh'

  spec.add_development_dependency 'chef', '>= 12.0'
  spec.add_development_dependency 'ohai', '>= 8.5'
  spec.add_development_dependency 'rake'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fauxhai-5.3.0 fauxhai.gemspec
fauxhai-5.2.0 fauxhai.gemspec
fauxhai-5.1.0 fauxhai.gemspec
fauxhai-5.0.0 fauxhai.gemspec