fauxhai-ng 8.7.0 → 8.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2dc1ee0155a5790702ccd4d9419071cc15d7371078c3b4f9ec1acbb703f2c48
4
- data.tar.gz: 14bd69539e6a6572f91702ca3ffbbdb8ef82d8585261ae53ae9a13aa6cde0355
3
+ metadata.gz: dfad7032a9bb340c87c46a0ca79b63b24f5f2301c71449d4657d39f90452a4f7
4
+ data.tar.gz: aa21af71122f8d4a7345bf402f7ea42adee52dd23596aa446214c5df25e1543b
5
5
  SHA512:
6
- metadata.gz: ff768c85f930aa543794242f2e7812c5321e7c1df209ae03fef12ae44b9bc8d1c0c333d7e5730678f308f2af36a0c8172942119e58fe2de99dbb0c4309a20396
7
- data.tar.gz: 214b6f3a7874193191936a160b1df7aa01289618dc37a06522f68330c5f3448f41666956bceeb83d3df3d7a9a8b9c3b89796eb7f7dd420026670ba0272398e28
6
+ metadata.gz: d47c1fe9f079f62ccb096e0ef229389a9ea2c8f7763fe88d49f440e84f388bfae8997ef7887cca05053d455b94a1f32284b97c6126285841e271a35d9f60183c
7
+ data.tar.gz: 913169b063da1bfc50421a54f433cef6379ad9254d25968475984081021fc2443e34cfce27e1e294d76b346ceb3a29e90feb84237cea3e0dbccff0c38a5846cb
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "https://rubygems.org"
2
+ gemspec
@@ -0,0 +1,28 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $:.unshift(lib) unless $:.include?(lib)
3
+ require "fauxhai/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "fauxhai-ng"
7
+ spec.version = Fauxhai::VERSION
8
+ spec.authors = ["Seth Vargo", "Tim Smith"]
9
+ spec.email = ["sethvargo@gmail.com", "tsmith84@gmail.com"]
10
+ spec.description = "Easily mock out ohai data"
11
+ spec.summary = "Fauxhai provides an easy way to mock out your ohai data for testing with chefspec!"
12
+ spec.homepage = "https://github.com/chefspec/fauxhai"
13
+ spec.license = "MIT"
14
+
15
+ spec.required_ruby_version = ">= 2.3"
16
+
17
+ spec.files = %w{LICENSE Gemfile fauxhai-ng.gemspec} + Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
18
+ spec.executables = "fauxhai"
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "net-ssh"
22
+
23
+ spec.add_development_dependency "chef", ">= 13.0"
24
+ spec.add_development_dependency "ohai", ">= 13.0"
25
+ spec.add_development_dependency "rake"
26
+ spec.add_development_dependency "rspec", "~> 3.7"
27
+ spec.add_development_dependency "rspec-its", "~> 1.2"
28
+ end
data/lib/.DS_Store CHANGED
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module Fauxhai
2
- VERSION = "8.7.0".freeze
2
+ VERSION = "8.7.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fauxhai-ng
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.7.0
4
+ version: 8.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-12-31 00:00:00.000000000 Z
12
+ date: 2021-04-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh
@@ -104,8 +104,10 @@ executables:
104
104
  extensions: []
105
105
  extra_rdoc_files: []
106
106
  files:
107
+ - Gemfile
107
108
  - LICENSE
108
109
  - bin/fauxhai
110
+ - fauxhai-ng.gemspec
109
111
  - lib/.DS_Store
110
112
  - lib/fauxhai.rb
111
113
  - lib/fauxhai/.DS_Store
@@ -170,7 +172,6 @@ files:
170
172
  - lib/fauxhai/platforms/opensuse/15.0.json
171
173
  - lib/fauxhai/platforms/opensuse/15.1.json
172
174
  - lib/fauxhai/platforms/opensuse/15.2.json
173
- - lib/fauxhai/platforms/oracle/.DS_Store
174
175
  - lib/fauxhai/platforms/oracle/5.11.json
175
176
  - lib/fauxhai/platforms/oracle/6.10.json
176
177
  - lib/fauxhai/platforms/oracle/6.9.json
@@ -194,7 +195,6 @@ files:
194
195
  - lib/fauxhai/platforms/suse/12.4.json
195
196
  - lib/fauxhai/platforms/suse/12.5.json
196
197
  - lib/fauxhai/platforms/suse/15.json
197
- - lib/fauxhai/platforms/ubuntu/.DS_Store
198
198
  - lib/fauxhai/platforms/ubuntu/14.04.json
199
199
  - lib/fauxhai/platforms/ubuntu/16.04.json
200
200
  - lib/fauxhai/platforms/ubuntu/18.04.json
@@ -229,7 +229,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
229
229
  - !ruby/object:Gem::Version
230
230
  version: '0'
231
231
  requirements: []
232
- rubygems_version: 3.2.3
232
+ rubygems_version: 3.1.4
233
233
  signing_key:
234
234
  specification_version: 4
235
235
  summary: Fauxhai provides an easy way to mock out your ohai data for testing with
Binary file
Binary file