fauxhai-chef 9.3.5 → 9.3.8
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/lib/fauxhai/mocker.rb +2 -2
- data/lib/fauxhai/platforms/rocky/9.json +3873 -0
- data/lib/fauxhai/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1a051adcadf3c1276f6157180e7a10f51b27ed8d9cbd37f084d8f293b2190e3
|
|
4
|
+
data.tar.gz: f9838e8ba34c69d9337bd37d7a36637b359db2fb830116839cb75a165272e59c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88d8603280f0549e9119a8fd1e956942dc14534c685937f9a972e0aceb5db17f4d7a689c6cc884f212771268a35cffd27b57b8fa0c3e01866297e78a498cd746
|
|
7
|
+
data.tar.gz: 4fd6db6f7f3add041f5a958a4407cc2ad6ef207dd8d2f3d97106e6b4ab7c3b11bb2222a7c58091b489940acadff37587066802b7988f0a3a185f4d02d03a076c
|
data/lib/fauxhai/mocker.rb
CHANGED
|
@@ -4,10 +4,10 @@ require "pathname" unless defined?(Pathname)
|
|
|
4
4
|
module Fauxhai
|
|
5
5
|
class Mocker
|
|
6
6
|
# The base URL for the GitHub project (raw)
|
|
7
|
-
RAW_BASE = "https://raw.githubusercontent.com/
|
|
7
|
+
RAW_BASE = "https://raw.githubusercontent.com/chef/fauxhai/main".freeze
|
|
8
8
|
|
|
9
9
|
# A message about where to find a list of platforms
|
|
10
|
-
PLATFORM_LIST_MESSAGE = "A list of available platforms is available at https://github.com/
|
|
10
|
+
PLATFORM_LIST_MESSAGE = "A list of available platforms is available at https://github.com/chef/fauxhai/blob/main/PLATFORMS.md".freeze
|
|
11
11
|
|
|
12
12
|
# Create a new Ohai Mock with fauxhai.
|
|
13
13
|
#
|