earl-report 0.4.4 → 0.4.5
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/views/earl_report.html.haml +10 -8
- data/spec/test-files/results.html +18 -18
- data/spec/test-files/results.jsonld +17 -17
- data/spec/test-files/results.ttl +15 -15
- metadata +35 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3aaa39cc7a10354ec91c77fdfdaaaff8b1cdfff
|
|
4
|
+
data.tar.gz: 6125a7c3e96e8d9b7969bda7640eea54663993c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3942202ef14d16ba8b6226f4fd7e2b0e01b7d41c9cb3fa13b13545ed6fd4b310601552f22a1f252fd8c08d3ed3d6a2aa6a8f48d32c60ea30f41ece647b62b25
|
|
7
|
+
data.tar.gz: 2d1b2a8f43d3f05cab236ebc464fbc1e7b8340262946d54c327d3399478b70f1e88b1f8e2a1ac172afc01a5331b61ebee5df1200b3ff71f869a11c918d7b92fb
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.5
|
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
- test_info = {}
|
|
109
109
|
- test_refs = {}
|
|
110
110
|
- subject_refs = {}
|
|
111
|
+
- passed_tests = []
|
|
111
112
|
- tests['entries'].each {|m| m['title'] ||= m['rdfs:label'] || m['description'] || m['rdfs:comment']}
|
|
112
113
|
- subjects.each_with_index do |subject, index|
|
|
113
114
|
- subject_refs[subject['@id']] = "subj_#{index}"
|
|
@@ -306,7 +307,7 @@
|
|
|
306
307
|
~ CGI.escapeHTML desc.to_s
|
|
307
308
|
%table.report
|
|
308
309
|
- skip_subject = {}
|
|
309
|
-
- passed_tests = []
|
|
310
|
+
- passed_tests[ndx2] = []
|
|
310
311
|
%tr
|
|
311
312
|
%th
|
|
312
313
|
Test
|
|
@@ -326,11 +327,12 @@
|
|
|
326
327
|
%td
|
|
327
328
|
%a{href: "##{tid}"}<
|
|
328
329
|
~ CGI.escapeHTML test['title'].to_s
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
- next if skip_subject[
|
|
330
|
+
-# Order assertions by subject name
|
|
331
|
+
- subjects.each_with_index do |subject, ndx|
|
|
332
|
+
- next if skip_subject[subject['@id']]
|
|
333
|
+
- assertion = test['assertions'].detect {|a| a['subject'] == subject['@id']}
|
|
332
334
|
- pass_fail = assertion['result']['outcome'].split(':').last.upcase.sub(/(PASS|FAIL)ED$/, '\1')
|
|
333
|
-
- passed_tests[ndx] = (passed_tests[ndx] || 0) + (pass_fail == 'PASS' ? 1 : 0)
|
|
335
|
+
- passed_tests[ndx2][ndx] = (passed_tests[ndx2][ndx] || 0) + (pass_fail == 'PASS' ? 1 : 0)
|
|
334
336
|
%td{class: pass_fail, property: "earl:assertions", typeof: assertion['@type']}
|
|
335
337
|
- if assertion['assertedBy']
|
|
336
338
|
%link{property: "earl:assertedBy", href: assertion['assertedBy']}
|
|
@@ -344,7 +346,7 @@
|
|
|
344
346
|
%tr.summary
|
|
345
347
|
%td
|
|
346
348
|
= "Percentage passed out of #{manifest['entries'].length} Tests"
|
|
347
|
-
- passed_tests.compact.each do |r|
|
|
349
|
+
- passed_tests[ndx2].compact.each do |r|
|
|
348
350
|
- pct = (r * 100.0) / manifest['entries'].length
|
|
349
351
|
%td{class: (pct == 100.0 ? 'passed-all' : (pct >= 95.0 ? 'passed-most' : 'passed-some'))}
|
|
350
352
|
= "#{'%.1f' % pct}%"
|
|
@@ -396,8 +398,8 @@
|
|
|
396
398
|
%dd
|
|
397
399
|
%table.report
|
|
398
400
|
%tbody
|
|
399
|
-
- tests['entries'].
|
|
400
|
-
- passed =
|
|
401
|
+
- tests['entries'].each_with_index do |manifest, ndx|
|
|
402
|
+
- passed = passed_tests[ndx][index].to_i
|
|
401
403
|
- next if passed == 0
|
|
402
404
|
- total = manifest['entries'].length
|
|
403
405
|
- pct = (passed * 100.0) / total
|
|
@@ -73,8 +73,8 @@
|
|
|
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='2017-
|
|
77
|
-
|
|
76
|
+
<time class='dt-published' datetime='2017-03-31' property='dc:issued'>
|
|
77
|
+
31 March 2017
|
|
78
78
|
</time>
|
|
79
79
|
</h2>
|
|
80
80
|
<dl>
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
</ul>
|
|
201
201
|
</section>
|
|
202
202
|
<section id='instructions-for-submitting-implementation-reports'>
|
|
203
|
-
<h2>Instructions for submitting implementation reports</h2>
|
|
203
|
+
<h2 id="instructions-for-submitting-implementation-reports">Instructions for submitting implementation reports</h2>
|
|
204
204
|
|
|
205
205
|
<p>Tests should be run using the test manifests defined in the
|
|
206
206
|
<a href="#test-manifests">Test Manifests</a> Section.</p>
|
|
@@ -212,25 +212,25 @@
|
|
|
212
212
|
for each test, referencing the test resource from the associated manifest
|
|
213
213
|
and the test subject being reported upon. An example test entry is be the following:</p>
|
|
214
214
|
|
|
215
|
-
<pre><code> [ a earl:Assertion;
 earl:assertedBy <http://greggkellogg.net/foaf#me>;
 earl:subject <--your-software-identifier-->;
 earl:test <--uri-of-test-from-manifest>;
 earl:result [
 a earl:TestResult;
 earl:outcome earl:passed;
 dc:date
|
|
215
|
+
<pre><code> [ a earl:Assertion;
 earl:assertedBy <http://greggkellogg.net/foaf#me>;
 earl:subject <--your-software-identifier-->;
 earl:test <--uri-of-test-from-manifest>;
 earl:result [
 a earl:TestResult;
 earl:outcome earl:passed;
 dc:date "2016-12-26T10:18:04-08:00"^^xsd:dateTime];
 earl:mode earl:automatic ] .
</code></pre>
|
|
216
216
|
|
|
217
217
|
<p>The Test Subject should be defined as a <code>doap:Project</code>, including the name,
|
|
218
218
|
homepage and developer(s) of the software (see <a href="https://github.com/edumbill/doap/wiki">DOAP</a>). Optionally, including the
|
|
219
219
|
project description and programming language. An example test subject description is the following:</p>
|
|
220
220
|
|
|
221
|
-
<pre><code> <> foaf:primaryTopic <--your-software-identifier--> ;
 dc:issued
|
|
221
|
+
<pre><code> <> foaf:primaryTopic <--your-software-identifier--> ;
 dc:issued "2016-12-26T10:18:04-08:00"^^xsd:dateTime ;
 foaf:maker <http://greggkellogg.net/foaf#me> .

 <--your-software-identifier--> a doap:Project, earl:TestSubject, earl:Software ;
 doap:name "Gregg Kellogg" ;
 doap:homepage <--your-software-homepace--> ;
 doap:license <--license-for-your-software--> ;
 doap:shortdesc "--your-short-project-description--"@en ;
 doap:description "--your-project-description--"@en ;
 doap:created "2016-12-09"^^xsd:date ;
 doap:programming-language "--your-implementation-language--" ;
 doap:implements <--specification-uri--> ;
 doap:category <--category-uris-for-specification-framework-and-implementation-language--> ;
 doap:download-page <--your-project-repository--> ;
 doap:mailing-list <--specification-public-mailing-list--@w3.org> ;
 doap:bug-database <--your-project-repository--/issues> ;
 doap:blog <--your-blog--> ;
 doap:developer <http://greggkellogg.net/foaf#me> ;
 foaf:maker <http://greggkellogg.net/foaf#me> ;
 dc:title "--your-project-name--" ;
 dc:description "--your-project-description--"@en ;
 dc:date "2016-12-09"^^xsd:date ;
 dc:creator <http://greggkellogg.net/foaf#me> ;
 dc:isPartOf <--your-implementation-framework--> .
</code></pre>
|
|
222
222
|
|
|
223
223
|
<p>The software developer, either an organization or one or more individuals SHOULD be
|
|
224
224
|
referenced from <code>doap:developer</code> using <a href="http://xmlns.com/foaf/spec">FOAF</a>. For example:</p>
|
|
225
225
|
|
|
226
|
-
<pre><code> <--your-software-identifier--> a foaf:Person, earl:Assertor;
 foaf:name
|
|
226
|
+
<pre><code> <--your-software-identifier--> a foaf:Person, earl:Assertor;
 foaf:name "Gregg Kellogg";
 foaf:title "Implementor";
 foaf:homepage <http://greggkellogg.net/foaf#me> .
</code></pre>
|
|
227
227
|
</section>
|
|
228
228
|
<section id='test-manifests'>
|
|
229
229
|
<h2>
|
|
230
230
|
<span class='secno'>2.</span>
|
|
231
231
|
Test Manifests
|
|
232
232
|
</h2>
|
|
233
|
-
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='
|
|
233
|
+
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='mf:Manifest Report'>
|
|
234
234
|
<h2>
|
|
235
235
|
<span class='secno'>2.1</span>
|
|
236
236
|
<span property='dc:title mf:name'>Example Test Cases</span>
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
<a href='#subj_0'>RDF::Turtle</a>
|
|
245
245
|
</th>
|
|
246
246
|
</tr>
|
|
247
|
-
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval
|
|
247
|
+
<tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='TestCase http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion'>
|
|
248
248
|
<td>
|
|
249
249
|
<a href='#test_1fdd82ac4caf30510cabfdb0a5987ddd'>subm-test-00</a>
|
|
250
250
|
</td>
|
|
@@ -260,12 +260,12 @@
|
|
|
260
260
|
</span>
|
|
261
261
|
</td>
|
|
262
262
|
</tr>
|
|
263
|
-
<tr inlist='inlist' rel='mf:entries' resource='_:
|
|
263
|
+
<tr inlist='inlist' rel='mf:entries' resource='_:b0' typeof='TestCase http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion'>
|
|
264
264
|
<td>
|
|
265
|
-
<a href='#
|
|
265
|
+
<a href='#test_9616fad74c7bf0cfba5d70f087ed0a96'>subm-test-01</a>
|
|
266
266
|
</td>
|
|
267
267
|
<td class='UNTESTED' property='earl:assertions' typeof='Assertion'>
|
|
268
|
-
<link href='_:
|
|
268
|
+
<link href='_:b0' property='earl:test' />
|
|
269
269
|
<link href='http://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
|
270
270
|
<span property='earl:result' typeof='TestResult'>
|
|
271
271
|
<span property='earl:outcome' resource='earl:untested'>
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
</dd>
|
|
315
315
|
<dt>Developer</dt>
|
|
316
316
|
<dd rel='doap:developer'>
|
|
317
|
-
<div resource='http://greggkellogg.net/foaf#me' typeof='foaf:Person
|
|
317
|
+
<div resource='http://greggkellogg.net/foaf#me' typeof='Assertor foaf:Person'>
|
|
318
318
|
<a href='http://greggkellogg.net/foaf#me'>
|
|
319
319
|
<span property='foaf:name'>Gregg Kellogg</span>
|
|
320
320
|
</a>
|
|
@@ -374,11 +374,11 @@
|
|
|
374
374
|
<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>
|
|
375
375
|
<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>
|
|
376
376
|
</dd>
|
|
377
|
-
<dt id='
|
|
377
|
+
<dt id='test_9616fad74c7bf0cfba5d70f087ed0a96' resource='_:b0'>
|
|
378
378
|
Test
|
|
379
379
|
<span property='dc:title mf:name'>subm-test-01</span>
|
|
380
380
|
</dt>
|
|
381
|
-
<dd resource='_:
|
|
381
|
+
<dd resource='_:b0'>
|
|
382
382
|
<p property='dc:description rdfs:comment'></p>
|
|
383
383
|
<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>
|
|
384
384
|
<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>
|
|
@@ -397,10 +397,10 @@
|
|
|
397
397
|
<meta content='Earl Report summary generator' property='doap:shortdesc' />
|
|
398
398
|
<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
|
|
399
399
|
version
|
|
400
|
-
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.
|
|
401
|
-
<span property='doap:revision'>0.4.
|
|
402
|
-
<meta content='earl-report-0.4.
|
|
403
|
-
<meta content='
|
|
400
|
+
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.4' typeof='doap:Version'>
|
|
401
|
+
<span property='doap:revision'>0.4.4</span>
|
|
402
|
+
<meta content='earl-report-0.4.4' property='doap:name' />
|
|
403
|
+
<meta content='2017-01-03' datatype='xsd:date' property='doap:created' />
|
|
404
404
|
</span>
|
|
405
405
|
an
|
|
406
406
|
<a href='http://unlicense.org' property='doap:license'>Unlicensed</a>
|
|
@@ -114,20 +114,20 @@
|
|
|
114
114
|
{
|
|
115
115
|
"@id": "http://example/manifest.ttl",
|
|
116
116
|
"@type": [
|
|
117
|
-
"
|
|
118
|
-
"
|
|
117
|
+
"mf:Manifest",
|
|
118
|
+
"Report"
|
|
119
119
|
],
|
|
120
120
|
"entries": [
|
|
121
121
|
{
|
|
122
122
|
"@id": "http://example/manifest.ttl#testeval00",
|
|
123
123
|
"@type": [
|
|
124
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
125
124
|
"TestCase",
|
|
125
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
126
126
|
"TestCriterion"
|
|
127
127
|
],
|
|
128
128
|
"assertions": [
|
|
129
129
|
{
|
|
130
|
-
"@id": "_:
|
|
130
|
+
"@id": "_:b2",
|
|
131
131
|
"@type": "Assertion",
|
|
132
132
|
"assertedBy": "http://greggkellogg.net/foaf#me",
|
|
133
133
|
"mode": "earl:automatic",
|
|
@@ -146,24 +146,24 @@
|
|
|
146
146
|
"title": "subm-test-00"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
|
-
"@id": "_:
|
|
149
|
+
"@id": "_:b0",
|
|
150
150
|
"@type": [
|
|
151
|
-
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
152
151
|
"TestCase",
|
|
152
|
+
"http://www.w3.org/ns/rdftest#TestTurtleEval",
|
|
153
153
|
"TestCriterion"
|
|
154
154
|
],
|
|
155
155
|
"assertions": [
|
|
156
156
|
{
|
|
157
|
-
"@id": "_:
|
|
157
|
+
"@id": "_:b1",
|
|
158
158
|
"@type": "Assertion",
|
|
159
159
|
"assertedBy": null,
|
|
160
160
|
"result": {
|
|
161
|
-
"@id": "_:
|
|
161
|
+
"@id": "_:b4",
|
|
162
162
|
"@type": "TestResult",
|
|
163
163
|
"outcome": "earl:untested"
|
|
164
164
|
},
|
|
165
165
|
"subject": "http://rubygems.org/gems/rdf-turtle",
|
|
166
|
-
"test": "_:
|
|
166
|
+
"test": "_:b0"
|
|
167
167
|
}
|
|
168
168
|
],
|
|
169
169
|
"rdfs:comment": "@prefix and qnames",
|
|
@@ -186,8 +186,8 @@
|
|
|
186
186
|
{
|
|
187
187
|
"@id": "http://greggkellogg.net/foaf#me",
|
|
188
188
|
"@type": [
|
|
189
|
-
"
|
|
190
|
-
"
|
|
189
|
+
"Assertor",
|
|
190
|
+
"foaf:Person"
|
|
191
191
|
],
|
|
192
192
|
"foaf:homepage": "http://greggkellogg.net/",
|
|
193
193
|
"foaf:name": "Gregg Kellogg"
|
|
@@ -199,11 +199,11 @@
|
|
|
199
199
|
"license": "http://unlicense.org",
|
|
200
200
|
"name": "earl-report",
|
|
201
201
|
"release": {
|
|
202
|
-
"@id": "https://github.com/gkellogg/earl-report/tree/0.4.
|
|
202
|
+
"@id": "https://github.com/gkellogg/earl-report/tree/0.4.4",
|
|
203
203
|
"@type": "doap:Version",
|
|
204
|
-
"created": "
|
|
205
|
-
"name": "earl-report-0.4.
|
|
206
|
-
"revision": "0.4.
|
|
204
|
+
"created": "2017-01-03",
|
|
205
|
+
"name": "earl-report-0.4.4",
|
|
206
|
+
"revision": "0.4.4"
|
|
207
207
|
},
|
|
208
208
|
"shortdesc": "Earl Report summary generator"
|
|
209
209
|
},
|
|
@@ -220,8 +220,8 @@
|
|
|
220
220
|
{
|
|
221
221
|
"@id": "http://greggkellogg.net/foaf#me",
|
|
222
222
|
"@type": [
|
|
223
|
-
"
|
|
224
|
-
"
|
|
223
|
+
"Assertor",
|
|
224
|
+
"foaf:Person"
|
|
225
225
|
],
|
|
226
226
|
"foaf:homepage": "http://greggkellogg.net/",
|
|
227
227
|
"foaf:name": "Gregg Kellogg"
|
data/spec/test-files/results.ttl
CHANGED
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
|
|
19
19
|
# Manifests
|
|
20
20
|
|
|
21
|
-
<http://example/manifest.ttl> a
|
|
22
|
-
|
|
21
|
+
<http://example/manifest.ttl> a mf:Manifest,
|
|
22
|
+
earl:Report;
|
|
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> _:g7428);
|
|
25
25
|
mf:name "Example Test Cases" .
|
|
26
26
|
|
|
27
|
-
<http://example/manifest.ttl#testeval00> a
|
|
28
|
-
|
|
27
|
+
<http://example/manifest.ttl#testeval00> a earl:TestCase,
|
|
28
|
+
<http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
29
29
|
earl:TestCriterion;
|
|
30
30
|
rdfs:comment "Blank subject";
|
|
31
31
|
mf:action <http://example/test-00.ttl>;
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
earl:test <http://example/manifest.ttl#testeval00>
|
|
44
44
|
] .
|
|
45
45
|
|
|
46
|
-
_:
|
|
47
|
-
|
|
46
|
+
_:g7428 a earl:TestCase,
|
|
47
|
+
<http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
48
48
|
earl:TestCriterion;
|
|
49
49
|
rdfs:comment "@prefix and qnames";
|
|
50
50
|
mf:action <http://example/test-01.ttl>;
|
|
@@ -57,7 +57,7 @@ _:g70336025838220 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
|
57
57
|
earl:outcome earl:untested
|
|
58
58
|
];
|
|
59
59
|
earl:subject <http://rubygems.org/gems/rdf-turtle>;
|
|
60
|
-
earl:test _:
|
|
60
|
+
earl:test _:g7428
|
|
61
61
|
] .
|
|
62
62
|
|
|
63
63
|
# Test Subjects
|
|
@@ -71,8 +71,8 @@ _:g70336025838220 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
|
71
71
|
doap:name "RDF::Turtle";
|
|
72
72
|
doap:programming-language "Ruby" .
|
|
73
73
|
|
|
74
|
-
<http://greggkellogg.net/foaf#me> a
|
|
75
|
-
|
|
74
|
+
<http://greggkellogg.net/foaf#me> a earl:Assertor,
|
|
75
|
+
foaf:Person;
|
|
76
76
|
foaf:homepage <http://greggkellogg.net/>;
|
|
77
77
|
foaf:name "Gregg Kellogg" .
|
|
78
78
|
|
|
@@ -86,10 +86,10 @@ _:g70336025838220 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
|
|
|
86
86
|
doap:license <http://unlicense.org>;
|
|
87
87
|
doap:name "earl-report";
|
|
88
88
|
doap:programming-language "Ruby";
|
|
89
|
-
doap:release <https://github.com/gkellogg/earl-report/tree/0.4.
|
|
89
|
+
doap:release <https://github.com/gkellogg/earl-report/tree/0.4.4>;
|
|
90
90
|
doap:shortdesc "Earl Report summary generator"@en .
|
|
91
91
|
|
|
92
|
-
<https://github.com/gkellogg/earl-report/tree/0.4.
|
|
93
|
-
doap:created "
|
|
94
|
-
doap:name "earl-report-0.4.
|
|
95
|
-
doap:revision "0.4.
|
|
92
|
+
<https://github.com/gkellogg/earl-report/tree/0.4.4> a doap:Version;
|
|
93
|
+
doap:created "2017-01-03"^^xsd:date;
|
|
94
|
+
doap:name "earl-report-0.4.4";
|
|
95
|
+
doap:revision "0.4.4" .
|
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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregg Kellogg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-03-31 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: '2.
|
|
19
|
+
version: '2.2'
|
|
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: '2.
|
|
26
|
+
version: '2.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: sparql
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '2.
|
|
33
|
+
version: '2.2'
|
|
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: '2.
|
|
40
|
+
version: '2.2'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rdf-turtle
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '2.
|
|
47
|
+
version: '2.2'
|
|
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: '2.
|
|
54
|
+
version: '2.2'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: json-ld
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -59,9 +59,6 @@ dependencies:
|
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '2.1'
|
|
62
|
-
- - ">="
|
|
63
|
-
- !ruby/object:Gem::Version
|
|
64
|
-
version: 2.1.1
|
|
65
62
|
type: :runtime
|
|
66
63
|
prerelease: false
|
|
67
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -69,65 +66,76 @@ dependencies:
|
|
|
69
66
|
- - "~>"
|
|
70
67
|
- !ruby/object:Gem::Version
|
|
71
68
|
version: '2.1'
|
|
72
|
-
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: haml
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '4.0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
73
81
|
- !ruby/object:Gem::Version
|
|
74
|
-
version:
|
|
82
|
+
version: '4.0'
|
|
75
83
|
- !ruby/object:Gem::Dependency
|
|
76
|
-
name:
|
|
84
|
+
name: kramdown
|
|
77
85
|
requirement: !ruby/object:Gem::Requirement
|
|
78
86
|
requirements:
|
|
79
87
|
- - "~>"
|
|
80
88
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '
|
|
89
|
+
version: '1.13'
|
|
82
90
|
type: :runtime
|
|
83
91
|
prerelease: false
|
|
84
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
93
|
requirements:
|
|
86
94
|
- - "~>"
|
|
87
95
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '
|
|
96
|
+
version: '1.13'
|
|
89
97
|
- !ruby/object:Gem::Dependency
|
|
90
98
|
name: nokogiri
|
|
91
99
|
requirement: !ruby/object:Gem::Requirement
|
|
92
100
|
requirements:
|
|
93
101
|
- - "~>"
|
|
94
102
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '1.
|
|
103
|
+
version: '1.7'
|
|
96
104
|
type: :runtime
|
|
97
105
|
prerelease: false
|
|
98
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
107
|
requirements:
|
|
100
108
|
- - "~>"
|
|
101
109
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '1.
|
|
110
|
+
version: '1.7'
|
|
103
111
|
- !ruby/object:Gem::Dependency
|
|
104
112
|
name: rspec
|
|
105
113
|
requirement: !ruby/object:Gem::Requirement
|
|
106
114
|
requirements:
|
|
107
115
|
- - "~>"
|
|
108
116
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '3.
|
|
117
|
+
version: '3.5'
|
|
110
118
|
type: :development
|
|
111
119
|
prerelease: false
|
|
112
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
121
|
requirements:
|
|
114
122
|
- - "~>"
|
|
115
123
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: '3.
|
|
124
|
+
version: '3.5'
|
|
117
125
|
- !ruby/object:Gem::Dependency
|
|
118
126
|
name: rspec-its
|
|
119
127
|
requirement: !ruby/object:Gem::Requirement
|
|
120
128
|
requirements:
|
|
121
129
|
- - "~>"
|
|
122
130
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: '1.
|
|
131
|
+
version: '1.2'
|
|
124
132
|
type: :development
|
|
125
133
|
prerelease: false
|
|
126
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
135
|
requirements:
|
|
128
136
|
- - "~>"
|
|
129
137
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '1.
|
|
138
|
+
version: '1.2'
|
|
131
139
|
- !ruby/object:Gem::Dependency
|
|
132
140
|
name: equivalent-xml
|
|
133
141
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -148,28 +156,28 @@ dependencies:
|
|
|
148
156
|
requirements:
|
|
149
157
|
- - "~>"
|
|
150
158
|
- !ruby/object:Gem::Version
|
|
151
|
-
version: '0.
|
|
159
|
+
version: '0.9'
|
|
152
160
|
type: :development
|
|
153
161
|
prerelease: false
|
|
154
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
155
163
|
requirements:
|
|
156
164
|
- - "~>"
|
|
157
165
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: '0.
|
|
166
|
+
version: '0.9'
|
|
159
167
|
- !ruby/object:Gem::Dependency
|
|
160
168
|
name: rake
|
|
161
169
|
requirement: !ruby/object:Gem::Requirement
|
|
162
170
|
requirements:
|
|
163
171
|
- - "~>"
|
|
164
172
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: '
|
|
173
|
+
version: '12.0'
|
|
166
174
|
type: :development
|
|
167
175
|
prerelease: false
|
|
168
176
|
version_requirements: !ruby/object:Gem::Requirement
|
|
169
177
|
requirements:
|
|
170
178
|
- - "~>"
|
|
171
179
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: '
|
|
180
|
+
version: '12.0'
|
|
173
181
|
description: EarlReport generates HTML+RDFa rollups of multiple EARL reports.
|
|
174
182
|
email: gregg@greggkellogg.net
|
|
175
183
|
executables:
|
|
@@ -208,7 +216,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
208
216
|
requirements:
|
|
209
217
|
- - ">="
|
|
210
218
|
- !ruby/object:Gem::Version
|
|
211
|
-
version:
|
|
219
|
+
version: 2.2.2
|
|
212
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
213
221
|
requirements:
|
|
214
222
|
- - ">="
|