Sha256: a969a32275ec6ef6a6bbd5daa94aa1072604f3795c60eeee945d55400dd15f26

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

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 -z`.split("\x0").reject { |f| f.match(%r{^(\..*|Gemfile|Rakefile)}) }
  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'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'rspec-its', '~> 1.2'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fauxhai-6.9.0 fauxhai.gemspec
fauxhai-6.8.0 fauxhai.gemspec
fauxhai-6.7.0 fauxhai.gemspec
fauxhai-6.6.0 fauxhai.gemspec
fauxhai-6.5.0 fauxhai.gemspec
fauxhai-6.4.0 fauxhai.gemspec
fauxhai-6.3.0 fauxhai.gemspec