fauxhai-chef 9.3.26 → 9.4.20
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 +4 -4
- data/fauxhai-chef.gemspec +1 -1
- data/lib/fauxhai/mocker.rb +1 -1
- data/lib/fauxhai/platforms/almalinux/10.json +4389 -0
- data/lib/fauxhai/platforms/debian/13.json +3688 -0
- data/lib/fauxhai/platforms/opensuse/15.6.json +2932 -0
- data/lib/fauxhai/platforms/opensuse/16.0.json +8858 -0
- data/lib/fauxhai/platforms/oracle/10.json +6757 -0
- data/lib/fauxhai/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40beeff2487b3b0ce772cfb4041251e72a86dc71eef86643dd7892feedfdb8e3
|
|
4
|
+
data.tar.gz: 496d19e2800125745db014ae39f47a02ee1dea025a6d8dff11be9e79823c484a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4678f6997bdd6b6b1b02a06f9dcd7aa2314fbaa5237f4eb14d48f5aec5dff017fbee46980b91464f37d2c11e1f7b65b829f546b94f3a7635c1a8b42e5976ab5a
|
|
7
|
+
data.tar.gz: 5105a5b070333fc2bfc7a342af9c4507ab6402a621650b5d89fd61aadc0d515dc9cefa04181470c4b60b36b6facb89991e38d7916ff6b0caa874435fe96e9540
|
data/fauxhai-chef.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.homepage = "https://github.com/chef/fauxhai"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
|
-
spec.required_ruby_version = ">=
|
|
15
|
+
spec.required_ruby_version = ">= 3.1"
|
|
16
16
|
|
|
17
17
|
spec.files = %w{LICENSE Gemfile fauxhai-chef.gemspec} + Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
|
|
18
18
|
spec.executables = "fauxhai"
|
data/lib/fauxhai/mocker.rb
CHANGED
|
@@ -65,7 +65,7 @@ module Fauxhai
|
|
|
65
65
|
end
|
|
66
66
|
return parse_and_validate(response_body)
|
|
67
67
|
else
|
|
68
|
-
raise Fauxhai::Exception::InvalidPlatform.new("Could not find platform '#{platform}/#{version}' on the local disk and an Github fetching returned http error code #{response.
|
|
68
|
+
raise Fauxhai::Exception::InvalidPlatform.new("Could not find platform '#{platform}/#{version}' on the local disk and an Github fetching returned http error code #{response.code}! #{PLATFORM_LIST_MESSAGE}")
|
|
69
69
|
end
|
|
70
70
|
else
|
|
71
71
|
raise Fauxhai::Exception::InvalidPlatform.new("Could not find platform '#{platform}/#{version}' on the local disk and Github fetching is disabled! #{PLATFORM_LIST_MESSAGE}")
|