fauxhai 2.1.0 → 2.1.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/fauxhai.gemspec +1 -1
- data/lib/fauxhai/mocker.rb +6 -14
- data/lib/fauxhai/platforms/amazon/2013.09.json +316 -0
- data/lib/fauxhai/platforms/amazon/2014.03.json +315 -0
- data/lib/fauxhai/platforms/chefspec/0.6.1.json +6 -1
- data/lib/fauxhai/platforms/debian/jessie/sid.json +580 -0
- data/lib/fauxhai/platforms/fedora/19.json +471 -0
- data/lib/fauxhai/platforms/fedora/20.json +439 -0
- data/lib/fauxhai/platforms/freebsd/10.0.json +326 -0
- data/lib/fauxhai/platforms/freebsd/8.4.json +361 -0
- data/lib/fauxhai/platforms/freebsd/9.2.json +326 -0
- data/lib/fauxhai/platforms/mac_os_x/10.9.2.json +794 -0
- data/lib/fauxhai/platforms/omnios/151006.json +1948 -0
- data/lib/fauxhai/platforms/oracle/5.10.json +146 -0
- data/lib/fauxhai/platforms/oracle/6.5.json +345 -0
- data/lib/fauxhai/platforms/smartos/5.11.json +1672 -0
- data/lib/fauxhai/platforms/ubuntu/13.10.json +502 -0
- data/lib/fauxhai/platforms/ubuntu/14.04.json +498 -0
- metadata +27 -12
metadata
CHANGED
@@ -1,55 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fauxhai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seth Vargo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-ssh
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: ohai
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
description: Easily mock out ohai data
|
@@ -60,7 +60,7 @@ executables:
|
|
60
60
|
extensions: []
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
|
-
- .gitignore
|
63
|
+
- ".gitignore"
|
64
64
|
- CHANGELOG.md
|
65
65
|
- CONTRIBUTING.md
|
66
66
|
- Gemfile
|
@@ -80,6 +80,8 @@ files:
|
|
80
80
|
- lib/fauxhai/keys/id_rsa.pub
|
81
81
|
- lib/fauxhai/mocker.rb
|
82
82
|
- lib/fauxhai/platforms/amazon/2012.09.json
|
83
|
+
- lib/fauxhai/platforms/amazon/2013.09.json
|
84
|
+
- lib/fauxhai/platforms/amazon/2014.03.json
|
83
85
|
- lib/fauxhai/platforms/centos/5.8.json
|
84
86
|
- lib/fauxhai/platforms/centos/5.9.json
|
85
87
|
- lib/fauxhai/platforms/centos/6.0.json
|
@@ -93,15 +95,25 @@ files:
|
|
93
95
|
- lib/fauxhai/platforms/debian/7.1.json
|
94
96
|
- lib/fauxhai/platforms/debian/7.2.json
|
95
97
|
- lib/fauxhai/platforms/debian/7.4.json
|
98
|
+
- lib/fauxhai/platforms/debian/jessie/sid.json
|
96
99
|
- lib/fauxhai/platforms/fedora/18.json
|
100
|
+
- lib/fauxhai/platforms/fedora/19.json
|
101
|
+
- lib/fauxhai/platforms/fedora/20.json
|
102
|
+
- lib/fauxhai/platforms/freebsd/10.0.json
|
103
|
+
- lib/fauxhai/platforms/freebsd/8.4.json
|
97
104
|
- lib/fauxhai/platforms/freebsd/9.1.json
|
105
|
+
- lib/fauxhai/platforms/freebsd/9.2.json
|
98
106
|
- lib/fauxhai/platforms/gentoo/2.1.json
|
99
107
|
- lib/fauxhai/platforms/mac_os_x/10.6.8.json
|
100
108
|
- lib/fauxhai/platforms/mac_os_x/10.7.4.json
|
101
109
|
- lib/fauxhai/platforms/mac_os_x/10.8.2.json
|
110
|
+
- lib/fauxhai/platforms/mac_os_x/10.9.2.json
|
102
111
|
- lib/fauxhai/platforms/omnios/151002.json
|
112
|
+
- lib/fauxhai/platforms/omnios/151006.json
|
103
113
|
- lib/fauxhai/platforms/openbsd/5.4.json
|
104
114
|
- lib/fauxhai/platforms/opensuse/12.3.json
|
115
|
+
- lib/fauxhai/platforms/oracle/5.10.json
|
116
|
+
- lib/fauxhai/platforms/oracle/6.5.json
|
105
117
|
- lib/fauxhai/platforms/redhat/5.10.json
|
106
118
|
- lib/fauxhai/platforms/redhat/5.6.json
|
107
119
|
- lib/fauxhai/platforms/redhat/5.7.json
|
@@ -113,11 +125,14 @@ files:
|
|
113
125
|
- lib/fauxhai/platforms/redhat/6.3.json
|
114
126
|
- lib/fauxhai/platforms/redhat/6.4.json
|
115
127
|
- lib/fauxhai/platforms/redhat/6.5.json
|
128
|
+
- lib/fauxhai/platforms/smartos/5.11.json
|
116
129
|
- lib/fauxhai/platforms/smartos/joyent_20130111T180733Z.json
|
117
130
|
- lib/fauxhai/platforms/suse/11.03.json
|
118
131
|
- lib/fauxhai/platforms/ubuntu/10.04.json
|
119
132
|
- lib/fauxhai/platforms/ubuntu/12.04.json
|
120
133
|
- lib/fauxhai/platforms/ubuntu/13.04.json
|
134
|
+
- lib/fauxhai/platforms/ubuntu/13.10.json
|
135
|
+
- lib/fauxhai/platforms/ubuntu/14.04.json
|
121
136
|
- lib/fauxhai/platforms/windows/2008R2.json
|
122
137
|
- lib/fauxhai/runner.rb
|
123
138
|
- tmp/.gitkeep
|
@@ -131,17 +146,17 @@ require_paths:
|
|
131
146
|
- lib
|
132
147
|
required_ruby_version: !ruby/object:Gem::Requirement
|
133
148
|
requirements:
|
134
|
-
- -
|
149
|
+
- - ">="
|
135
150
|
- !ruby/object:Gem::Version
|
136
151
|
version: '1.9'
|
137
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
153
|
requirements:
|
139
|
-
- -
|
154
|
+
- - ">="
|
140
155
|
- !ruby/object:Gem::Version
|
141
156
|
version: '0'
|
142
157
|
requirements: []
|
143
158
|
rubyforge_project:
|
144
|
-
rubygems_version: 2.2.
|
159
|
+
rubygems_version: 2.2.2
|
145
160
|
signing_key:
|
146
161
|
specification_version: 4
|
147
162
|
summary: Fauxhai provides an easy way to mock out your ohai data for testing with
|