Sha256: 16bcef772a3271beeaec046fb7a32c25f09e6309de2a6d60d44015193363c0e5

Contents?: true

Size: 1010 Bytes

Versions: 5

Compression:

Stored size: 1010 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/customink/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

5 entries across 5 versions & 1 rubygems

Version Path
fauxhai-4.1.0 fauxhai.gemspec
fauxhai-4.0.2 fauxhai.gemspec
fauxhai-4.0.1 fauxhai.gemspec
fauxhai-4.0.0 fauxhai.gemspec
fauxhai-3.10.0 fauxhai.gemspec