Sha256: c4d4df89e658169ccd44975d230dae4b190c841198f26d498386e59a62355127
Contents?: true
Size: 945 Bytes
Versions: 3
Compression:
Stored size: 945 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 = %q{Easily mock out ohai data} spec.summary = %q{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 = '>= 1.9' 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_runtime_dependency 'ohai' spec.add_development_dependency 'rake' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fauxhai-2.3.0 | fauxhai.gemspec |
fauxhai-2.2.0 | fauxhai.gemspec |
fauxhai-2.1.2 | fauxhai.gemspec |