inspec-core 3.1.3 → 3.2.6
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/README.md +3 -1
- data/lib/inspec/base_cli.rb +6 -0
- data/lib/inspec/version.rb +1 -1
- data/lib/resources/docker.rb +13 -6
- data/lib/resources/docker_container.rb +2 -1
- data/lib/utils/spdx.txt +199 -160
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75673eea6201c540d308fe1456f1467dec32ee1cad3227745910cc37c642c3a6
|
4
|
+
data.tar.gz: ab10f24b1fbbc1c3342591774d09ed7949a42dba19eb4fcf6c759a069f85fd2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae3fbdc2fab1819fdcd769991e787a15c01af92f5771f47b2d3b5772f47f156796967f3bec8658459b05dfae24da2e02f35d0312bc0202cd4a603885c9eda512
|
7
|
+
data.tar.gz: a681d287554346fdb7517bf035d34e190c6d89797cb246039bf0c9d1186898905dccb880b169a0810c1e890be570692d788aa794e561ed9cd43ec9e4eb55d8af
|
data/README.md
CHANGED
@@ -117,6 +117,8 @@ Finished in 0.04321 seconds (files took 0.54917 seconds to load)
|
|
117
117
|
|
118
118
|
### Install it from source
|
119
119
|
|
120
|
+
Note that installing from OS packages from [the download page](https://downloads.chef.io) is the preferred method.
|
121
|
+
|
120
122
|
That requires [bundler](http://bundler.io/):
|
121
123
|
|
122
124
|
```bash
|
@@ -451,4 +453,4 @@ Unless required by applicable law or agreed to in writing, software
|
|
451
453
|
distributed under the License is distributed on an "AS IS" BASIS,
|
452
454
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
453
455
|
See the License for the specific language governing permissions and
|
454
|
-
limitations under the License.
|
456
|
+
limitations under the License.
|
data/lib/inspec/base_cli.rb
CHANGED
@@ -69,6 +69,12 @@ module Inspec
|
|
69
69
|
desc: 'Use SSL for transport layer encryption (WinRM).'
|
70
70
|
option :self_signed, type: :boolean,
|
71
71
|
desc: 'Allow remote scans with self-signed certificates (WinRM).'
|
72
|
+
option :winrm_transport, type: :string, default: 'negotiate',
|
73
|
+
desc: 'Specify which transport to use, defaults to negotiate (WinRM).'
|
74
|
+
option :winrm_disable_sspi, type: :boolean,
|
75
|
+
desc: 'Whether to use disable sspi authentication, defaults to false (WinRM).'
|
76
|
+
option :winrm_basic_auth, type: :boolean,
|
77
|
+
desc: 'Whether to use basic authentication, defaults to false (WinRM).'
|
72
78
|
option :json_config, type: :string,
|
73
79
|
desc: 'Read configuration from JSON file (`-` reads from stdin).'
|
74
80
|
option :proxy_command, type: :string,
|
data/lib/inspec/version.rb
CHANGED
data/lib/resources/docker.rb
CHANGED
@@ -14,7 +14,7 @@ module Inspec::Resources
|
|
14
14
|
filter.register_column(:commands, field: 'command')
|
15
15
|
.register_column(:ids, field: 'id')
|
16
16
|
.register_column(:images, field: 'image')
|
17
|
-
.register_column(:labels, field: 'labels')
|
17
|
+
.register_column(:labels, field: 'labels', style: :simple)
|
18
18
|
.register_column(:local_volumes, field: 'localvolumes')
|
19
19
|
.register_column(:mounts, field: 'mounts')
|
20
20
|
.register_column(:names, field: 'names')
|
@@ -190,21 +190,28 @@ module Inspec::Resources
|
|
190
190
|
# since docker is not outputting valid json, we need to parse each row
|
191
191
|
raw.each_line { |entry|
|
192
192
|
# convert all keys to lower_case to work well with ruby and filter table
|
193
|
-
|
194
|
-
[
|
193
|
+
row = JSON.parse(entry).map { |key, value|
|
194
|
+
[key.downcase, value]
|
195
195
|
}.to_h
|
196
196
|
|
197
197
|
# ensure all keys are there
|
198
|
-
|
198
|
+
row = ensure_keys(row, labels)
|
199
199
|
|
200
200
|
# strip off any linked container names
|
201
201
|
# Depending on how it was linked, the actual container name may come before
|
202
202
|
# or after the link information, so we'll just look for the first name that
|
203
203
|
# does not include a slash since that is not a valid character in a container name
|
204
|
-
|
204
|
+
if row['names']
|
205
|
+
row['names'] = row['names'].split(',').find { |c| !c.include?('/') }
|
206
|
+
end
|
207
|
+
|
208
|
+
# Split labels on ',' or set to empty array
|
209
|
+
# Allows for `docker.containers.where { labels.include?('app=redis') }`
|
210
|
+
row['labels'] = row.key?('labels') ? row['labels'].split(',') : []
|
205
211
|
|
206
|
-
output.push(
|
212
|
+
output.push(row)
|
207
213
|
}
|
214
|
+
|
208
215
|
output
|
209
216
|
rescue JSON::ParserError => _e
|
210
217
|
warn "Could not parse `docker #{subcommand}` output"
|
@@ -21,6 +21,7 @@ module Inspec::Resources
|
|
21
21
|
its('tag') { should eq 'latest' }
|
22
22
|
its('ports') { should eq [] }
|
23
23
|
its('command') { should eq 'nc -ll -p 1234 -e /bin/cat' }
|
24
|
+
its('labels') { should include 'app=example' }
|
24
25
|
end
|
25
26
|
|
26
27
|
describe docker_container(id: 'e2c52a183358') do
|
@@ -47,7 +48,7 @@ module Inspec::Resources
|
|
47
48
|
end
|
48
49
|
|
49
50
|
def labels
|
50
|
-
object_info.labels
|
51
|
+
object_info.labels
|
51
52
|
end
|
52
53
|
|
53
54
|
def ports
|
data/lib/utils/spdx.txt
CHANGED
@@ -1,86 +1,69 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
0BSD
|
2
|
+
AAL
|
3
|
+
ADSL
|
3
4
|
AFL-1.1
|
4
5
|
AFL-1.2
|
5
6
|
AFL-2.0
|
6
7
|
AFL-2.1
|
7
8
|
AFL-3.0
|
9
|
+
AGPL-1.0
|
10
|
+
AGPL-1.0-only
|
11
|
+
AGPL-1.0-or-later
|
12
|
+
AGPL-3.0
|
13
|
+
AGPL-3.0-only
|
14
|
+
AGPL-3.0-or-later
|
15
|
+
AMDPLPA
|
16
|
+
AML
|
8
17
|
AMPAS
|
9
|
-
|
10
|
-
Adobe-Glyph
|
18
|
+
ANTLR-PD
|
11
19
|
APAFML
|
20
|
+
APL-1.0
|
21
|
+
APSL-1.0
|
22
|
+
APSL-1.1
|
23
|
+
APSL-1.2
|
24
|
+
APSL-2.0
|
25
|
+
Abstyles
|
12
26
|
Adobe-2006
|
13
|
-
|
27
|
+
Adobe-Glyph
|
14
28
|
Afmparse
|
15
29
|
Aladdin
|
16
|
-
|
17
|
-
AMDPLPA
|
18
|
-
ANTLR-PD
|
30
|
+
All Rights Reserved
|
19
31
|
Apache-1.0
|
20
32
|
Apache-1.1
|
21
33
|
Apache-2.0
|
22
|
-
AML
|
23
|
-
APSL-1.0
|
24
|
-
APSL-1.1
|
25
|
-
APSL-1.2
|
26
|
-
APSL-2.0
|
27
34
|
Artistic-1.0
|
28
35
|
Artistic-1.0-Perl
|
29
36
|
Artistic-1.0-cl8
|
30
37
|
Artistic-2.0
|
31
|
-
|
32
|
-
Bahyph
|
33
|
-
Barr
|
34
|
-
Beerware
|
35
|
-
BitTorrent-1.0
|
36
|
-
BitTorrent-1.1
|
37
|
-
BSL-1.0
|
38
|
-
Borceux
|
38
|
+
BSD-1-Clause
|
39
39
|
BSD-2-Clause
|
40
40
|
BSD-2-Clause-FreeBSD
|
41
41
|
BSD-2-Clause-NetBSD
|
42
|
+
BSD-2-Clause-Patent
|
42
43
|
BSD-3-Clause
|
44
|
+
BSD-3-Clause-Attribution
|
43
45
|
BSD-3-Clause-Clear
|
46
|
+
BSD-3-Clause-LBNL
|
44
47
|
BSD-3-Clause-No-Nuclear-License
|
45
48
|
BSD-3-Clause-No-Nuclear-License-2014
|
46
49
|
BSD-3-Clause-No-Nuclear-Warranty
|
47
50
|
BSD-4-Clause
|
51
|
+
BSD-4-Clause-UC
|
48
52
|
BSD-Protection
|
49
53
|
BSD-Source-Code
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
CECILL-1.1
|
58
|
-
CECILL-2.0
|
59
|
-
CECILL-2.1
|
60
|
-
CECILL-B
|
61
|
-
CECILL-C
|
62
|
-
ClArtistic
|
63
|
-
MIT-CMU
|
64
|
-
CNRI-Jython
|
65
|
-
CNRI-Python
|
66
|
-
CNRI-Python-GPL-Compatible
|
67
|
-
CPOL-1.02
|
68
|
-
CDDL-1.0
|
69
|
-
CDDL-1.1
|
70
|
-
CPAL-1.0
|
71
|
-
CPL-1.0
|
54
|
+
BSL-1.0
|
55
|
+
Bahyph
|
56
|
+
Barr
|
57
|
+
Beerware
|
58
|
+
BitTorrent-1.0
|
59
|
+
BitTorrent-1.1
|
60
|
+
Borceux
|
72
61
|
CATOSL-1.1
|
73
|
-
Condor-1.1
|
74
62
|
CC-BY-1.0
|
75
63
|
CC-BY-2.0
|
76
64
|
CC-BY-2.5
|
77
65
|
CC-BY-3.0
|
78
66
|
CC-BY-4.0
|
79
|
-
CC-BY-ND-1.0
|
80
|
-
CC-BY-ND-2.0
|
81
|
-
CC-BY-ND-2.5
|
82
|
-
CC-BY-ND-3.0
|
83
|
-
CC-BY-ND-4.0
|
84
67
|
CC-BY-NC-1.0
|
85
68
|
CC-BY-NC-2.0
|
86
69
|
CC-BY-NC-2.5
|
@@ -96,135 +79,189 @@ CC-BY-NC-SA-2.0
|
|
96
79
|
CC-BY-NC-SA-2.5
|
97
80
|
CC-BY-NC-SA-3.0
|
98
81
|
CC-BY-NC-SA-4.0
|
82
|
+
CC-BY-ND-1.0
|
83
|
+
CC-BY-ND-2.0
|
84
|
+
CC-BY-ND-2.5
|
85
|
+
CC-BY-ND-3.0
|
86
|
+
CC-BY-ND-4.0
|
99
87
|
CC-BY-SA-1.0
|
100
88
|
CC-BY-SA-2.0
|
101
89
|
CC-BY-SA-2.5
|
102
90
|
CC-BY-SA-3.0
|
103
91
|
CC-BY-SA-4.0
|
104
92
|
CC0-1.0
|
93
|
+
CDDL-1.0
|
94
|
+
CDDL-1.1
|
95
|
+
CDLA-Permissive-1.0
|
96
|
+
CDLA-Sharing-1.0
|
97
|
+
CECILL-1.0
|
98
|
+
CECILL-1.1
|
99
|
+
CECILL-2.0
|
100
|
+
CECILL-2.1
|
101
|
+
CECILL-B
|
102
|
+
CECILL-C
|
103
|
+
CNRI-Jython
|
104
|
+
CNRI-Python
|
105
|
+
CNRI-Python-GPL-Compatible
|
106
|
+
CPAL-1.0
|
107
|
+
CPL-1.0
|
108
|
+
CPOL-1.02
|
109
|
+
CUA-OPL-1.0
|
110
|
+
Caldera
|
111
|
+
ClArtistic
|
112
|
+
Condor-1.1
|
105
113
|
Crossword
|
106
114
|
CrystalStacker
|
107
|
-
CUA-OPL-1.0
|
108
115
|
Cube
|
109
|
-
curl
|
110
116
|
D-FSL-1.0
|
111
|
-
diffmark
|
112
|
-
WTFPL
|
113
117
|
DOC
|
114
|
-
Dotseqn
|
115
118
|
DSDP
|
116
|
-
|
117
|
-
EPL-1.0
|
119
|
+
Dotseqn
|
118
120
|
ECL-1.0
|
119
121
|
ECL-2.0
|
120
|
-
eGenix
|
121
122
|
EFL-1.0
|
122
123
|
EFL-2.0
|
123
|
-
|
124
|
-
|
125
|
-
Entessa
|
126
|
-
ErlPL-1.1
|
124
|
+
EPL-1.0
|
125
|
+
EPL-2.0
|
127
126
|
EUDatagrid
|
128
127
|
EUPL-1.0
|
129
128
|
EUPL-1.1
|
129
|
+
EUPL-1.2
|
130
|
+
Entessa
|
131
|
+
ErlPL-1.1
|
130
132
|
Eurosym
|
131
|
-
Fair
|
132
|
-
MIT-feh
|
133
|
-
Frameworx-1.0
|
134
|
-
FreeImage
|
135
|
-
FTL
|
136
133
|
FSFAP
|
137
134
|
FSFUL
|
138
135
|
FSFULLR
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
136
|
+
FTL
|
137
|
+
Fair
|
138
|
+
Frameworx-1.0
|
139
|
+
FreeImage
|
143
140
|
GFDL-1.1
|
141
|
+
GFDL-1.1-only
|
142
|
+
GFDL-1.1-or-later
|
144
143
|
GFDL-1.2
|
144
|
+
GFDL-1.2-only
|
145
|
+
GFDL-1.2-or-later
|
145
146
|
GFDL-1.3
|
147
|
+
GFDL-1.3-only
|
148
|
+
GFDL-1.3-or-later
|
149
|
+
GL2PS
|
146
150
|
GPL-1.0
|
151
|
+
GPL-1.0+
|
152
|
+
GPL-1.0-only
|
153
|
+
GPL-1.0-or-later
|
147
154
|
GPL-2.0
|
155
|
+
GPL-2.0+
|
156
|
+
GPL-2.0-only
|
157
|
+
GPL-2.0-or-later
|
158
|
+
GPL-2.0-with-GCC-exception
|
159
|
+
GPL-2.0-with-autoconf-exception
|
160
|
+
GPL-2.0-with-bison-exception
|
161
|
+
GPL-2.0-with-classpath-exception
|
162
|
+
GPL-2.0-with-font-exception
|
148
163
|
GPL-3.0
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
164
|
+
GPL-3.0+
|
165
|
+
GPL-3.0-only
|
166
|
+
GPL-3.0-or-later
|
167
|
+
GPL-3.0-with-GCC-exception
|
168
|
+
GPL-3.0-with-autoconf-exception
|
169
|
+
Giftware
|
170
|
+
Glide
|
171
|
+
Glulxe
|
155
172
|
HPND
|
173
|
+
HaskellReport
|
156
174
|
IBM-pibs
|
157
|
-
IPL-1.0
|
158
175
|
ICU
|
176
|
+
IJG
|
177
|
+
IPA
|
178
|
+
IPL-1.0
|
179
|
+
ISC
|
159
180
|
ImageMagick
|
160
|
-
iMatix
|
161
181
|
Imlib2
|
162
|
-
IJG
|
163
182
|
Info-ZIP
|
164
|
-
Intel-ACPI
|
165
183
|
Intel
|
184
|
+
Intel-ACPI
|
166
185
|
Interbase-1.0
|
167
|
-
IPA
|
168
|
-
ISC
|
169
|
-
JasPer-2.0
|
170
186
|
JSON
|
187
|
+
JasPer-2.0
|
188
|
+
LAL-1.2
|
189
|
+
LAL-1.3
|
190
|
+
LGPL-2.0
|
191
|
+
LGPL-2.0+
|
192
|
+
LGPL-2.0-only
|
193
|
+
LGPL-2.0-or-later
|
194
|
+
LGPL-2.1
|
195
|
+
LGPL-2.1+
|
196
|
+
LGPL-2.1-only
|
197
|
+
LGPL-2.1-or-later
|
198
|
+
LGPL-3.0
|
199
|
+
LGPL-3.0+
|
200
|
+
LGPL-3.0-only
|
201
|
+
LGPL-3.0-or-later
|
202
|
+
LGPLLR
|
203
|
+
LPL-1.0
|
204
|
+
LPL-1.02
|
171
205
|
LPPL-1.0
|
172
206
|
LPPL-1.1
|
173
207
|
LPPL-1.2
|
174
208
|
LPPL-1.3a
|
175
209
|
LPPL-1.3c
|
176
210
|
Latex2e
|
177
|
-
BSD-3-Clause-LBNL
|
178
211
|
Leptonica
|
179
|
-
LGPLLR
|
180
|
-
Libpng
|
181
|
-
libtiff
|
182
|
-
LAL-1.2
|
183
|
-
LAL-1.3
|
184
212
|
LiLiQ-P-1.1
|
185
|
-
LiLiQ-Rplus-1.1
|
186
213
|
LiLiQ-R-1.1
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
MTLL
|
191
|
-
MS-PL
|
192
|
-
MS-RL
|
193
|
-
MirOS
|
194
|
-
MITNFA
|
214
|
+
LiLiQ-Rplus-1.1
|
215
|
+
Libpng
|
216
|
+
Linux-OpenIB
|
195
217
|
MIT
|
196
|
-
|
218
|
+
MIT-0
|
219
|
+
MIT-CMU
|
220
|
+
MIT-advertising
|
221
|
+
MIT-enna
|
222
|
+
MIT-feh
|
223
|
+
MITNFA
|
197
224
|
MPL-1.0
|
198
225
|
MPL-1.1
|
199
226
|
MPL-2.0
|
200
227
|
MPL-2.0-no-copyleft-exception
|
201
|
-
|
228
|
+
MS-PL
|
229
|
+
MS-RL
|
230
|
+
MTLL
|
231
|
+
MakeIndex
|
232
|
+
MirOS
|
233
|
+
Motosoto
|
202
234
|
Multics
|
203
235
|
Mup
|
204
236
|
NASA-1.3
|
205
|
-
Naumen
|
206
237
|
NBPL-1.0
|
207
|
-
|
208
|
-
NetCDF
|
238
|
+
NCSA
|
209
239
|
NGPL
|
240
|
+
NLOD-1.0
|
241
|
+
NLPL
|
210
242
|
NOSL
|
211
243
|
NPL-1.0
|
212
244
|
NPL-1.1
|
213
|
-
Newsletr
|
214
|
-
NLPL
|
215
|
-
Nokia
|
216
245
|
NPOSL-3.0
|
217
|
-
NLOD-1.0
|
218
|
-
Noweb
|
219
246
|
NRL
|
220
247
|
NTP
|
248
|
+
Naumen
|
249
|
+
Net-SNMP
|
250
|
+
NetCDF
|
251
|
+
Newsletr
|
252
|
+
Nokia
|
253
|
+
Noweb
|
221
254
|
Nunit
|
255
|
+
OCCT-PL
|
222
256
|
OCLC-2.0
|
257
|
+
ODC-By-1.0
|
223
258
|
ODbL-1.0
|
224
|
-
|
225
|
-
|
259
|
+
OFL-1.0
|
260
|
+
OFL-1.1
|
261
|
+
OGL-UK-1.0
|
262
|
+
OGL-UK-2.0
|
263
|
+
OGL-UK-3.0
|
226
264
|
OGTSL
|
227
|
-
OLDAP-2.2.2
|
228
265
|
OLDAP-1.1
|
229
266
|
OLDAP-1.2
|
230
267
|
OLDAP-1.3
|
@@ -234,6 +271,7 @@ OLDAP-2.0.1
|
|
234
271
|
OLDAP-2.1
|
235
272
|
OLDAP-2.2
|
236
273
|
OLDAP-2.2.1
|
274
|
+
OLDAP-2.2.2
|
237
275
|
OLDAP-2.3
|
238
276
|
OLDAP-2.4
|
239
277
|
OLDAP-2.5
|
@@ -242,103 +280,104 @@ OLDAP-2.7
|
|
242
280
|
OLDAP-2.8
|
243
281
|
OML
|
244
282
|
OPL-1.0
|
283
|
+
OSET-PL-2.1
|
245
284
|
OSL-1.0
|
246
285
|
OSL-1.1
|
247
286
|
OSL-2.0
|
248
287
|
OSL-2.1
|
249
288
|
OSL-3.0
|
250
289
|
OpenSSL
|
251
|
-
|
290
|
+
PDDL-1.0
|
252
291
|
PHP-3.0
|
253
292
|
PHP-3.01
|
254
293
|
Plexus
|
255
294
|
PostgreSQL
|
256
|
-
psfrag
|
257
|
-
psutils
|
258
295
|
Python-2.0
|
259
296
|
QPL-1.0
|
260
297
|
Qhull
|
261
|
-
|
262
|
-
RPSL-1.0
|
298
|
+
RHeCos-1.1
|
263
299
|
RPL-1.1
|
264
300
|
RPL-1.5
|
265
|
-
|
266
|
-
RSCPL
|
301
|
+
RPSL-1.0
|
267
302
|
RSA-MD
|
303
|
+
RSCPL
|
304
|
+
Rdisc
|
268
305
|
Ruby
|
269
306
|
SAX-PD
|
270
|
-
Saxpath
|
271
307
|
SCEA
|
272
|
-
SWL
|
273
|
-
SMPPL
|
274
|
-
Sendmail
|
275
308
|
SGI-B-1.0
|
276
309
|
SGI-B-1.1
|
277
310
|
SGI-B-2.0
|
278
|
-
|
279
|
-
|
311
|
+
SISSL
|
312
|
+
SISSL-1.2
|
313
|
+
SMLNJ
|
314
|
+
SMPPL
|
315
|
+
SNIA
|
316
|
+
SPL-1.0
|
317
|
+
SWL
|
318
|
+
Saxpath
|
319
|
+
Sendmail
|
320
|
+
Sendmail-8.23
|
280
321
|
SimPL-2.0
|
281
322
|
Sleepycat
|
282
|
-
SNIA
|
283
323
|
Spencer-86
|
284
324
|
Spencer-94
|
285
325
|
Spencer-99
|
286
|
-
|
326
|
+
StandardML-NJ
|
287
327
|
SugarCRM-1.1.3
|
288
|
-
SISSL
|
289
|
-
SISSL-1.2
|
290
|
-
SPL-1.0
|
291
|
-
Watcom-1.0
|
292
328
|
TCL
|
293
329
|
TCP-wrappers
|
294
|
-
Unlicense
|
295
330
|
TMate
|
296
331
|
TORQUE-1.1
|
297
332
|
TOSL
|
333
|
+
TU-Berlin-1.0
|
334
|
+
TU-Berlin-2.0
|
335
|
+
UPL-1.0
|
298
336
|
Unicode-DFS-2015
|
299
337
|
Unicode-DFS-2016
|
300
338
|
Unicode-TOU
|
301
|
-
|
302
|
-
NCSA
|
303
|
-
Vim
|
339
|
+
Unlicense
|
304
340
|
VOSTROM
|
305
341
|
VSL-1.0
|
306
|
-
|
307
|
-
W3C-19980720
|
342
|
+
Vim
|
308
343
|
W3C
|
344
|
+
W3C-19980720
|
345
|
+
W3C-20150513
|
346
|
+
WTFPL
|
347
|
+
Watcom-1.0
|
309
348
|
Wsuipa
|
310
|
-
Xnet
|
311
349
|
X11
|
312
|
-
Xerox
|
313
350
|
XFree86-1.1
|
314
|
-
xinetd
|
315
|
-
xpp
|
316
351
|
XSkat
|
352
|
+
Xerox
|
353
|
+
Xnet
|
317
354
|
YPL-1.0
|
318
355
|
YPL-1.1
|
356
|
+
ZPL-1.1
|
357
|
+
ZPL-2.0
|
358
|
+
ZPL-2.1
|
319
359
|
Zed
|
320
360
|
Zend-2.0
|
321
361
|
Zimbra-1.3
|
322
362
|
Zimbra-1.4
|
323
363
|
Zlib
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
364
|
+
bzip2-1.0.5
|
365
|
+
bzip2-1.0.6
|
366
|
+
copyleft-next-0.3.0
|
367
|
+
copyleft-next-0.3.1
|
368
|
+
curl
|
369
|
+
diffmark
|
370
|
+
dvipdfm
|
328
371
|
eCos-2.0
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
LGPL-2.0+
|
342
|
-
StandardML-NJ
|
343
|
-
WXwindows
|
344
|
-
All Rights Reserved
|
372
|
+
eGenix
|
373
|
+
gSOAP-1.3b
|
374
|
+
gnuplot
|
375
|
+
iMatix
|
376
|
+
libtiff
|
377
|
+
mpich2
|
378
|
+
psfrag
|
379
|
+
psutils
|
380
|
+
wxWindows
|
381
|
+
xinetd
|
382
|
+
xpp
|
383
|
+
zlib-acknowledgement
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inspec-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Richter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-12-
|
11
|
+
date: 2018-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: train-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '1.5'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.
|
22
|
+
version: 1.6.3
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '1.5'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 1.
|
32
|
+
version: 1.6.3
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: thor
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|