earl-report 0.4.8 → 0.4.9
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/VERSION +1 -1
- data/lib/earl_report.rb +12 -1
- data/spec/test-files/results.html +15 -15
- data/spec/test-files/results.jsonld +57 -57
- data/spec/test-files/results.ttl +21 -21
- metadata +13 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e76543b490f30df2542076f3beb58514e02346c964e716aed470ea1f1dd1dcac
|
|
4
|
+
data.tar.gz: e03701faad62e4ea150911a1bdca0a875839276ddc28604e1066a5a532ac0509
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a5f474b6b1fe4d1f1c259d93048b2a2299dd56ff88fd82d215f8f55cf6f51c20706ccac8189bf6d250d16a0a1c5f614d90c30f6f0212c2beaab65ddf13a03b2
|
|
7
|
+
data.tar.gz: fa242658e76b29269cf820834f83df03b6bef2d3b30e018d420ace79dd0b2b0afdde97708fb8183a3afbbce397f9339a7920795cbe697b2eeeef15035d9aaf3d
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.9
|
data/lib/earl_report.rb
CHANGED
|
@@ -482,7 +482,18 @@ class EarlReport
|
|
|
482
482
|
@json_hash ||= begin
|
|
483
483
|
# Customized JSON-LD output
|
|
484
484
|
result = JSON::LD::API.fromRDF(graph) do |expanded|
|
|
485
|
-
JSON::LD::API.frame(expanded, TEST_FRAME, expanded: true, embed: '@never')
|
|
485
|
+
framed = JSON::LD::API.frame(expanded, TEST_FRAME, expanded: true, embed: '@never')
|
|
486
|
+
# Reorder test subjects by @id
|
|
487
|
+
#require 'byebug'; byebug
|
|
488
|
+
framed['testSubjects'] = framed['testSubjects'].sort_by {|t| t['@id']}
|
|
489
|
+
|
|
490
|
+
# Reorder test assertions to make them consistent with subject order
|
|
491
|
+
framed['entries'].each do |manifest|
|
|
492
|
+
manifest['entries'].each do |test|
|
|
493
|
+
test['assertions'] = test['assertions'].sort_by {|a| a['subject']}
|
|
494
|
+
end
|
|
495
|
+
end
|
|
496
|
+
framed
|
|
486
497
|
end
|
|
487
498
|
unless result.is_a?(Hash)
|
|
488
499
|
raise "Expected JSON result to have a single entry, it had #{result.length rescue 'unknown'} entries"
|
|
@@ -73,8 +73,8 @@ Implementation Report
|
|
|
73
73
|
<h2 id='w3c-document-28-october-2015'>
|
|
74
74
|
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
|
75
75
|
Document
|
|
76
|
-
<time class='dt-published' datetime='
|
|
77
|
-
|
|
76
|
+
<time class='dt-published' datetime='2020-02-21' property='dc:issued'>
|
|
77
|
+
21 February 2020
|
|
78
78
|
</time>
|
|
79
79
|
</h2>
|
|
80
80
|
<dl>
|
|
@@ -105,7 +105,7 @@ rules apply.
|
|
|
105
105
|
</p>
|
|
106
106
|
<hr />
|
|
107
107
|
</div>
|
|
108
|
-
<section about='' id='abstract' typeof='
|
|
108
|
+
<section about='' id='abstract' typeof='doap:Project Software'>
|
|
109
109
|
<h2>Abstract</h2>
|
|
110
110
|
<p>
|
|
111
111
|
This document report test subject conformance for and related specifications for
|
|
@@ -231,7 +231,7 @@ Report Generation Software
|
|
|
231
231
|
<span class='secno'>2.</span>
|
|
232
232
|
Test Manifests
|
|
233
233
|
</h2>
|
|
234
|
-
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='mf:Manifest
|
|
234
|
+
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='Report mf:Manifest'>
|
|
235
235
|
<h2>
|
|
236
236
|
<span class='secno'>2.1</span>
|
|
237
237
|
<span property='dc:title mf:name'>Example Test Cases</span>
|
|
@@ -245,7 +245,7 @@ Test
|
|
|
245
245
|
<a href='#subj_0'>RDF::Turtle</a>
|
|
246
246
|
</th>
|
|
247
247
|
</tr>
|
|
248
|
-
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='
|
|
248
|
+
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='TestCriterion http://www.w3.org/ns/rdftest#TestTurtleEval TestCase'>
|
|
249
249
|
<td>
|
|
250
250
|
<a href='#test_1fdd82ac4caf30510cabfdb0a5987ddd'>subm-test-00</a>
|
|
251
251
|
</td>
|
|
@@ -261,12 +261,12 @@ PASS
|
|
|
261
261
|
</span>
|
|
262
262
|
</td>
|
|
263
263
|
</tr>
|
|
264
|
-
<tr inlist='inlist' rel='mf:entries' resource='_:
|
|
264
|
+
<tr inlist='inlist' rel='mf:entries' resource='_:b5' typeof='TestCriterion http://www.w3.org/ns/rdftest#TestTurtleEval TestCase'>
|
|
265
265
|
<td>
|
|
266
|
-
<a href='#
|
|
266
|
+
<a href='#test_afa00d7d18419c220355daf1fd144bee'>subm-test-01</a>
|
|
267
267
|
</td>
|
|
268
268
|
<td class='UNTESTED' property='earl:assertions' typeof='Assertion'>
|
|
269
|
-
<link href='_:
|
|
269
|
+
<link href='_:b5' property='earl:test' />
|
|
270
270
|
<link href='http://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
|
271
271
|
<span property='earl:result' typeof='TestResult'>
|
|
272
272
|
<span property='earl:outcome' resource='earl:untested'>
|
|
@@ -301,7 +301,7 @@ This report was tested using the following test subjects:
|
|
|
301
301
|
<span about='http://rubygems.org/gems/rdf-turtle' property='doap:name'>RDF::Turtle</span>
|
|
302
302
|
</a>
|
|
303
303
|
</dt>
|
|
304
|
-
<dd property='earl:testSubjects' resource='http://rubygems.org/gems/rdf-turtle' typeof='TestSubject
|
|
304
|
+
<dd property='earl:testSubjects' resource='http://rubygems.org/gems/rdf-turtle' typeof='TestSubject doap:Project Software'>
|
|
305
305
|
<dl>
|
|
306
306
|
<dt>Description</dt>
|
|
307
307
|
<dd lang='en' property='doap:description'>RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.</dd>
|
|
@@ -377,11 +377,11 @@ Test
|
|
|
377
377
|
<pre class='example actionDoc' property='mf:action' resource='http://example/test-00.ttl' title='subm-test-00 Input'>http://example/test-00.ttl not loaded</pre>
|
|
378
378
|
<pre class='example resultDoc' property='mf:result' resource='http://example/test-00.out' title='subm-test-00 Result'>http://example/test-00.out not loaded</pre>
|
|
379
379
|
</dd>
|
|
380
|
-
<dt id='
|
|
380
|
+
<dt id='test_afa00d7d18419c220355daf1fd144bee' resource='_:b5'>
|
|
381
381
|
Test
|
|
382
382
|
<span property='dc:title mf:name'>subm-test-01</span>
|
|
383
383
|
</dt>
|
|
384
|
-
<dd resource='_:
|
|
384
|
+
<dd resource='_:b5'>
|
|
385
385
|
<p property='dc:description rdfs:comment'></p>
|
|
386
386
|
<pre class='example actionDoc' property='mf:action' resource='http://example/test-01.ttl' title='subm-test-01 Input'>http://example/test-01.ttl not loaded</pre>
|
|
387
387
|
<pre class='example resultDoc' property='mf:result' resource='http://example/test-01.out' title='subm-test-01 Result'>http://example/test-01.out not loaded</pre>
|
|
@@ -389,7 +389,7 @@ Test
|
|
|
389
389
|
</div>
|
|
390
390
|
</dl>
|
|
391
391
|
</section>
|
|
392
|
-
<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='http://rubygems.org/gems/earl-report' typeof='
|
|
392
|
+
<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='http://rubygems.org/gems/earl-report' typeof='doap:Project Software'>
|
|
393
393
|
<h2>
|
|
394
394
|
<span class='secno'>D.</span>
|
|
395
395
|
Report Generation Software
|
|
@@ -400,9 +400,9 @@ This report generated by
|
|
|
400
400
|
<meta content='Earl Report summary generator' property='doap:shortdesc' />
|
|
401
401
|
<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
|
|
402
402
|
version
|
|
403
|
-
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.
|
|
404
|
-
<span property='doap:revision'>0.4.
|
|
405
|
-
<meta content='earl-report-0.4.
|
|
403
|
+
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.8' typeof='doap:Version'>
|
|
404
|
+
<span property='doap:revision'>0.4.8</span>
|
|
405
|
+
<meta content='earl-report-0.4.8' property='doap:name' />
|
|
406
406
|
<meta datatype='xsd:date' property='doap:created' />
|
|
407
407
|
</span>
|
|
408
408
|
an
|
|
@@ -104,82 +104,81 @@
|
|
|
104
104
|
},
|
|
105
105
|
"@id": "",
|
|
106
106
|
"@type": [
|
|
107
|
-
"
|
|
108
|
-
"
|
|
107
|
+
"doap:Project",
|
|
108
|
+
"Software"
|
|
109
109
|
],
|
|
110
|
+
"name": "Turtle Test Results",
|
|
110
111
|
"entries": [
|
|
111
112
|
{
|
|
112
113
|
"@id": "http://example/manifest.ttl",
|
|
113
114
|
"@type": [
|
|
114
|
-
"
|
|
115
|
-
"
|
|
115
|
+
"Report",
|
|
116
|
+
"mf:Manifest"
|
|
116
117
|
],
|
|
118
|
+
"title": "Example Test Cases",
|
|
119
|
+
"rdfs:comment": "Description for Example Test Cases",
|
|
117
120
|
"entries": [
|
|
118
121
|
{
|
|
119
122
|
"@id": "http://example/manifest.ttl#testeval00",
|
|
120
123
|
"@type": [
|
|
121
|
-
"TestCase",
|
|
122
124
|
"TestCriterion",
|
|
123
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval"
|
|
125
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
126
|
+
"TestCase"
|
|
124
127
|
],
|
|
125
|
-
"testAction": "http://example/test-00.ttl",
|
|
126
128
|
"title": "subm-test-00",
|
|
129
|
+
"rdfs:comment": "Blank subject",
|
|
130
|
+
"testAction": "http://example/test-00.ttl",
|
|
127
131
|
"assertions": [
|
|
128
132
|
{
|
|
129
133
|
"@type": "Assertion",
|
|
130
|
-
"
|
|
131
|
-
"subject": "http://rubygems.org/gems/rdf-turtle",
|
|
134
|
+
"mode": "earl:automatic",
|
|
132
135
|
"result": {
|
|
133
136
|
"@type": "TestResult",
|
|
134
137
|
"outcome": "earl:passed"
|
|
135
138
|
},
|
|
136
139
|
"test": "http://example/manifest.ttl#testeval00",
|
|
137
|
-
"
|
|
140
|
+
"assertedBy": "http://greggkellogg.net/foaf#me",
|
|
141
|
+
"subject": "http://rubygems.org/gems/rdf-turtle"
|
|
138
142
|
}
|
|
139
143
|
],
|
|
140
|
-
"testResult": "http://example/test-00.out"
|
|
141
|
-
"rdfs:comment": "Blank subject"
|
|
144
|
+
"testResult": "http://example/test-00.out"
|
|
142
145
|
},
|
|
143
146
|
{
|
|
144
|
-
"@id": "_:
|
|
147
|
+
"@id": "_:b1",
|
|
145
148
|
"@type": [
|
|
146
|
-
"TestCase",
|
|
147
149
|
"TestCriterion",
|
|
148
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval"
|
|
150
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
151
|
+
"TestCase"
|
|
149
152
|
],
|
|
150
|
-
"testAction": "http://example/test-01.ttl",
|
|
151
153
|
"title": "subm-test-01",
|
|
154
|
+
"rdfs:comment": "@prefix and qnames",
|
|
155
|
+
"testAction": "http://example/test-01.ttl",
|
|
152
156
|
"assertions": [
|
|
153
157
|
{
|
|
154
158
|
"@type": "Assertion",
|
|
155
|
-
"subject": "http://rubygems.org/gems/rdf-turtle",
|
|
156
159
|
"result": {
|
|
157
160
|
"@type": "TestResult",
|
|
158
161
|
"outcome": "earl:untested"
|
|
159
162
|
},
|
|
160
|
-
"test": "_:
|
|
163
|
+
"test": "_:b1",
|
|
164
|
+
"subject": "http://rubygems.org/gems/rdf-turtle",
|
|
161
165
|
"assertedBy": null
|
|
162
166
|
}
|
|
163
167
|
],
|
|
164
|
-
"testResult": "http://example/test-01.out"
|
|
165
|
-
"rdfs:comment": "@prefix and qnames"
|
|
168
|
+
"testResult": "http://example/test-01.out"
|
|
166
169
|
}
|
|
167
|
-
]
|
|
168
|
-
"title": "Example Test Cases",
|
|
169
|
-
"rdfs:comment": "Description for Example Test Cases"
|
|
170
|
+
]
|
|
170
171
|
}
|
|
171
172
|
],
|
|
172
173
|
"generatedBy": {
|
|
173
174
|
"@id": "http://rubygems.org/gems/earl-report",
|
|
174
175
|
"@type": [
|
|
175
|
-
"
|
|
176
|
-
"
|
|
176
|
+
"doap:Project",
|
|
177
|
+
"Software"
|
|
177
178
|
],
|
|
178
|
-
"shortdesc": "Earl Report summary generator",
|
|
179
|
-
"homepage": "https://github.com/gkellogg/earl-report",
|
|
180
|
-
"language": "Ruby",
|
|
181
|
-
"license": "http://unlicense.org",
|
|
182
179
|
"doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports",
|
|
180
|
+
"shortdesc": "Earl Report summary generator",
|
|
181
|
+
"name": "earl-report",
|
|
183
182
|
"developer": [
|
|
184
183
|
{
|
|
185
184
|
"@id": "http://greggkellogg.net/foaf#me",
|
|
@@ -187,46 +186,34 @@
|
|
|
187
186
|
"Assertor",
|
|
188
187
|
"foaf:Person"
|
|
189
188
|
],
|
|
190
|
-
"foaf:
|
|
191
|
-
"foaf:
|
|
189
|
+
"foaf:name": "Gregg Kellogg",
|
|
190
|
+
"foaf:homepage": "http://greggkellogg.net/"
|
|
192
191
|
}
|
|
193
192
|
],
|
|
194
|
-
"
|
|
193
|
+
"homepage": "https://github.com/gkellogg/earl-report",
|
|
195
194
|
"release": {
|
|
196
|
-
"@id": "https://github.com/gkellogg/earl-report/tree/0.4.
|
|
195
|
+
"@id": "https://github.com/gkellogg/earl-report/tree/0.4.8",
|
|
197
196
|
"@type": "doap:Version",
|
|
198
197
|
"doap:created": {
|
|
199
|
-
"@value": "2019-
|
|
198
|
+
"@value": "2019-09-06",
|
|
200
199
|
"@type": "http://www.w3.org/2001/XMLSchema#date"
|
|
201
200
|
},
|
|
202
|
-
"name": "earl-report-0.4.
|
|
203
|
-
"revision": "0.4.
|
|
204
|
-
}
|
|
201
|
+
"name": "earl-report-0.4.8",
|
|
202
|
+
"revision": "0.4.8"
|
|
203
|
+
},
|
|
204
|
+
"language": "Ruby",
|
|
205
|
+
"license": "http://unlicense.org"
|
|
205
206
|
},
|
|
206
|
-
"assertions": [
|
|
207
|
-
"/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
|
|
208
|
-
],
|
|
209
|
-
"bibRef": "[[TURTLE]]",
|
|
210
|
-
"name": "Turtle Test Results",
|
|
211
207
|
"testSubjects": [
|
|
212
208
|
{
|
|
213
209
|
"@id": "http://rubygems.org/gems/rdf-turtle",
|
|
214
210
|
"@type": [
|
|
215
211
|
"TestSubject",
|
|
216
|
-
"
|
|
217
|
-
"
|
|
212
|
+
"doap:Project",
|
|
213
|
+
"Software"
|
|
218
214
|
],
|
|
219
|
-
"release": [
|
|
220
|
-
{
|
|
221
|
-
"revision": "unknown"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"revision": "unknown"
|
|
225
|
-
}
|
|
226
|
-
],
|
|
227
|
-
"homepage": "http://ruby-rdf.github.com/rdf-turtle",
|
|
228
|
-
"language": "Ruby",
|
|
229
215
|
"doapDesc": "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.",
|
|
216
|
+
"name": "RDF::Turtle",
|
|
230
217
|
"developer": [
|
|
231
218
|
{
|
|
232
219
|
"@id": "http://greggkellogg.net/foaf#me",
|
|
@@ -234,11 +221,24 @@
|
|
|
234
221
|
"Assertor",
|
|
235
222
|
"foaf:Person"
|
|
236
223
|
],
|
|
237
|
-
"foaf:
|
|
238
|
-
"foaf:
|
|
224
|
+
"foaf:name": "Gregg Kellogg",
|
|
225
|
+
"foaf:homepage": "http://greggkellogg.net/"
|
|
239
226
|
}
|
|
240
227
|
],
|
|
241
|
-
"
|
|
228
|
+
"homepage": "http://ruby-rdf.github.com/rdf-turtle",
|
|
229
|
+
"release": [
|
|
230
|
+
{
|
|
231
|
+
"revision": "unknown"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"revision": "unknown"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"language": "Ruby"
|
|
242
238
|
}
|
|
239
|
+
],
|
|
240
|
+
"bibRef": "[[TURTLE]]",
|
|
241
|
+
"assertions": [
|
|
242
|
+
"/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
|
|
243
243
|
]
|
|
244
244
|
}
|
data/spec/test-files/results.ttl
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
8
8
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
9
9
|
|
|
10
|
-
<> a
|
|
11
|
-
|
|
10
|
+
<> a doap:Project,
|
|
11
|
+
earl:Software;
|
|
12
12
|
dc:bibliographicCitation "[[TURTLE]]";
|
|
13
13
|
doap:name "Turtle Test Results";
|
|
14
14
|
mf:entries (<http://example/manifest.ttl>);
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
|
|
19
19
|
# Manifests
|
|
20
20
|
|
|
21
|
-
<http://example/manifest.ttl> a
|
|
22
|
-
|
|
21
|
+
<http://example/manifest.ttl> a earl:Report,
|
|
22
|
+
mf:Manifest;
|
|
23
23
|
rdfs:comment "Description for Example Test Cases";
|
|
24
|
-
mf:entries (<http://example/manifest.ttl#testeval00> _:
|
|
24
|
+
mf:entries (<http://example/manifest.ttl#testeval00> _:g406000);
|
|
25
25
|
mf:name "Example Test Cases" .
|
|
26
26
|
|
|
27
|
-
<http://example/manifest.ttl#testeval00> a earl:
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
<http://example/manifest.ttl#testeval00> a earl:TestCriterion,
|
|
28
|
+
<http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
29
|
+
earl:TestCase;
|
|
30
30
|
rdfs:comment "Blank subject";
|
|
31
31
|
mf:action <http://example/test-00.ttl>;
|
|
32
32
|
mf:name "subm-test-00";
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
earl:test <http://example/manifest.ttl#testeval00>
|
|
44
44
|
] .
|
|
45
45
|
|
|
46
|
-
_:
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
_:g406000 a earl:TestCriterion,
|
|
47
|
+
<http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
48
|
+
earl:TestCase;
|
|
49
49
|
rdfs:comment "@prefix and qnames";
|
|
50
50
|
mf:action <http://example/test-01.ttl>;
|
|
51
51
|
mf:name "subm-test-01";
|
|
@@ -57,14 +57,14 @@ _:g70346484879600 a earl:TestCase,
|
|
|
57
57
|
earl:outcome earl:untested
|
|
58
58
|
];
|
|
59
59
|
earl:subject <http://rubygems.org/gems/rdf-turtle>;
|
|
60
|
-
earl:test _:
|
|
60
|
+
earl:test _:g406000
|
|
61
61
|
] .
|
|
62
62
|
|
|
63
63
|
# Test Subjects
|
|
64
64
|
|
|
65
65
|
<http://rubygems.org/gems/rdf-turtle> a earl:TestSubject,
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
doap:Project,
|
|
67
|
+
earl:Software;
|
|
68
68
|
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en;
|
|
69
69
|
doap:developer <http://greggkellogg.net/foaf#me>;
|
|
70
70
|
doap:homepage <http://ruby-rdf.github.com/rdf-turtle>;
|
|
@@ -79,18 +79,18 @@ _:g70346484879600 a earl:TestCase,
|
|
|
79
79
|
|
|
80
80
|
# Report Generation Software
|
|
81
81
|
|
|
82
|
-
<http://rubygems.org/gems/earl-report> a
|
|
83
|
-
|
|
82
|
+
<http://rubygems.org/gems/earl-report> a doap:Project,
|
|
83
|
+
earl:Software;
|
|
84
84
|
doap:description "EarlReport generates HTML+RDFa rollups of multiple EARL reports"@en;
|
|
85
85
|
doap:developer <http://greggkellogg.net/foaf#me>;
|
|
86
86
|
doap:homepage <https://github.com/gkellogg/earl-report>;
|
|
87
87
|
doap:license <http://unlicense.org>;
|
|
88
88
|
doap:name "earl-report";
|
|
89
89
|
doap:programming-language "Ruby";
|
|
90
|
-
doap:release <https://github.com/gkellogg/earl-report/tree/0.4.
|
|
90
|
+
doap:release <https://github.com/gkellogg/earl-report/tree/0.4.8>;
|
|
91
91
|
doap:shortdesc "Earl Report summary generator"@en .
|
|
92
92
|
|
|
93
|
-
<https://github.com/gkellogg/earl-report/tree/0.4.
|
|
94
|
-
doap:created "2019-
|
|
95
|
-
doap:name "earl-report-0.4.
|
|
96
|
-
doap:revision "0.4.
|
|
93
|
+
<https://github.com/gkellogg/earl-report/tree/0.4.8> a doap:Version;
|
|
94
|
+
doap:created "2019-09-06"^^xsd:date;
|
|
95
|
+
doap:name "earl-report-0.4.8";
|
|
96
|
+
doap:revision "0.4.8" .
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: earl-report
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregg Kellogg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: linkeddata
|
|
@@ -16,42 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '3.
|
|
19
|
+
version: '3.1'
|
|
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
|
-
version: '3.
|
|
26
|
+
version: '3.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: haml
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '5.
|
|
33
|
+
version: '5.1'
|
|
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
|
-
version: '5.
|
|
40
|
+
version: '5.1'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: kramdown
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '1.
|
|
47
|
+
version: '1.17'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '1.
|
|
54
|
+
version: '1.17'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: nokogiri
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '3.
|
|
75
|
+
version: '3.9'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.
|
|
82
|
+
version: '3.9'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: rspec-its
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -128,14 +128,14 @@ dependencies:
|
|
|
128
128
|
requirements:
|
|
129
129
|
- - "~>"
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: '
|
|
131
|
+
version: '13.0'
|
|
132
132
|
type: :development
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: '
|
|
138
|
+
version: '13.0'
|
|
139
139
|
description: EarlReport generates HTML+RDFa rollups of multiple EARL reports.
|
|
140
140
|
email: gregg@greggkellogg.net
|
|
141
141
|
executables:
|
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
|
-
rubygems_version: 3.
|
|
184
|
+
rubygems_version: 3.1.2
|
|
185
185
|
signing_key:
|
|
186
186
|
specification_version: 4
|
|
187
187
|
summary: Earl Report summary generator
|