earl-report 0.8.0 → 0.9.0
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 +15 -2
- data/spec/test-files/results.html +448 -417
- data/spec/test-files/results.jsonld +1 -1
- data/spec/test-files/results.ttl +1 -1
- metadata +49 -43
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96f39fab33a1be32b13d921e1ae02c692a841a9285fc6f79b8b75e0338c395c4
|
|
4
|
+
data.tar.gz: e4f8b52306cc7b25c9602e9f99dab808ae84d27c4b795e97f2185ba0a570213e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 978c03c37788f29f3fed96181f547dc40e7d65cac035331eef8155e10a77612f4917d028a54b063f9ae7ec259837a8e02433de78a7e2282d9724008ff67f4b6f
|
|
7
|
+
data.tar.gz: 836e06dfa27dddc721083926cf443304016e9ac7de7c73003096b673c14ebdcd52deb9d202525057c7042be1c61dbf30754fc922b58302c3e670973ff3a2a19a
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.9.0
|
data/lib/earl_report.rb
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# EARL reporting
|
|
2
2
|
require 'json/ld'
|
|
3
|
-
require 'rdf/ordered_repo'
|
|
4
3
|
require 'rdf/turtle'
|
|
5
4
|
require 'rdf/vocab'
|
|
6
5
|
require 'sparql'
|
|
7
6
|
require 'haml'
|
|
8
7
|
require 'open-uri'
|
|
9
8
|
|
|
9
|
+
# Optionally, beautify HTML output
|
|
10
|
+
begin
|
|
11
|
+
require 'htmlbeautifier'
|
|
12
|
+
rescue LoadError
|
|
13
|
+
# No beautification
|
|
14
|
+
end
|
|
15
|
+
|
|
10
16
|
##
|
|
11
17
|
# EARL reporting class.
|
|
12
18
|
# Instantiate a new class using one or more input graphs
|
|
@@ -497,7 +503,14 @@ class EarlReport
|
|
|
497
503
|
end
|
|
498
504
|
|
|
499
505
|
# Generate HTML report
|
|
500
|
-
html = Haml
|
|
506
|
+
html = if Haml.const_defined?(:Template)
|
|
507
|
+
Haml::Template.new(format: :xhtml) {haml}.render(self, tests: json_hash)
|
|
508
|
+
else
|
|
509
|
+
Haml::Engine.new(haml, format: :xhtml).render(self, tests: json_hash)
|
|
510
|
+
end
|
|
511
|
+
if defined?(::HtmlBeautifier)
|
|
512
|
+
html = HtmlBeautifier.beautify(html)
|
|
513
|
+
end
|
|
501
514
|
io.write(html) if io
|
|
502
515
|
html
|
|
503
516
|
else
|
|
@@ -1,420 +1,451 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta content='text/html;charset=utf-8' http-equiv='Content-Type' />
|
|
5
|
-
<link href='earl.ttl' rel='alternate' />
|
|
6
|
-
<link href='earl.jsonld' rel='alternate' />
|
|
7
|
-
<link href='https://www.w3.org/StyleSheets/TR/base' rel='stylesheet' />
|
|
8
|
-
<link href='/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl' rel='related' />
|
|
9
|
-
<title>
|
|
10
|
-
Turtle Test Results
|
|
11
|
-
Implementation Report
|
|
12
|
-
</title>
|
|
13
|
-
<style type='text/css'>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
</style>
|
|
64
|
-
</head>
|
|
65
|
-
<body prefix='bibo: http://purl.org/ontology/bibo/ earl: http://www.w3.org/ns/earl# doap: http://usefulinc.com/ns/doap# mf: http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#' vocab='http://www.w3.org/ns/earl#'>
|
|
66
|
-
<div class='head' role='contentinfo'>
|
|
67
|
-
<p>
|
|
68
|
-
<a href='http://www.w3.org/'>
|
|
69
|
-
<img alt='W3C' height='48' src='https://www.w3.org/Icons/w3c_home' width='72' />
|
|
70
|
-
</a>
|
|
71
|
-
</p>
|
|
72
|
-
<h1 class='title p-name' id='title' property='dc:title'>Turtle Test Results</h1>
|
|
73
|
-
<h2 id='w3c-document-28-october-2015'>
|
|
74
|
-
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
|
75
|
-
Document
|
|
76
|
-
<time class='dt-published' datetime='
|
|
77
|
-
|
|
78
|
-
</time>
|
|
79
|
-
</h2>
|
|
80
|
-
<dl>
|
|
81
|
-
<dt>Editor:</dt
|
|
82
|
-
<p>
|
|
83
|
-
|
|
84
|
-
<
|
|
85
|
-
|
|
86
|
-
<a href='earl.
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<a href='http://www.
|
|
100
|
-
|
|
101
|
-
<a href='http://www.w3.org/Consortium/Legal/ipr-notice#
|
|
102
|
-
|
|
103
|
-
<a href='http://www.w3.org/Consortium/Legal/
|
|
104
|
-
|
|
105
|
-
</
|
|
106
|
-
|
|
107
|
-
</
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
<
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
</
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
<
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
</
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
<abbr title='World Wide Web Consortium'>W3C</abbr
|
|
137
|
-
|
|
138
|
-
</
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
<
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
<
|
|
152
|
-
<
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
<
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
<
|
|
164
|
-
<
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
</
|
|
169
|
-
</li>
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
<
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
<
|
|
178
|
-
<
|
|
179
|
-
</
|
|
180
|
-
</
|
|
181
|
-
</li>
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
<
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
<
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
<
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
</
|
|
201
|
-
</
|
|
202
|
-
|
|
203
|
-
|
|
3
|
+
<head>
|
|
4
|
+
<meta content='text/html;charset=utf-8' http-equiv='Content-Type' />
|
|
5
|
+
<link href='earl.ttl' rel='alternate' />
|
|
6
|
+
<link href='earl.jsonld' rel='alternate' />
|
|
7
|
+
<link href='https://www.w3.org/StyleSheets/TR/base' rel='stylesheet' />
|
|
8
|
+
<link href='/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl' rel='related' />
|
|
9
|
+
<title>
|
|
10
|
+
Turtle Test Results
|
|
11
|
+
Implementation Report
|
|
12
|
+
</title>
|
|
13
|
+
<style type='text/css'>
|
|
14
|
+
/*<![CDATA[*/
|
|
15
|
+
span[property='dc:description rdfs:comment'] { display: none; }
|
|
16
|
+
td.PASS { color: green; }
|
|
17
|
+
td.FAIL { color: red; }
|
|
18
|
+
table.report {
|
|
19
|
+
border-width: 1px;
|
|
20
|
+
border-spacing: 2px;
|
|
21
|
+
border-style: outset;
|
|
22
|
+
border-color: gray;
|
|
23
|
+
border-collapse: separate;
|
|
24
|
+
background-color: white;
|
|
25
|
+
}
|
|
26
|
+
table.report th {
|
|
27
|
+
border-width: 1px;
|
|
28
|
+
padding: 1px;
|
|
29
|
+
border-style: inset;
|
|
30
|
+
border-color: gray;
|
|
31
|
+
background-color: white;
|
|
32
|
+
-moz-border-radius: ;
|
|
33
|
+
}
|
|
34
|
+
table.report td {
|
|
35
|
+
border-width: 1px;
|
|
36
|
+
padding: 1px;
|
|
37
|
+
border-style: inset;
|
|
38
|
+
border-color: gray;
|
|
39
|
+
background-color: white;
|
|
40
|
+
-moz-border-radius: ;
|
|
41
|
+
}
|
|
42
|
+
tr.summary {font-weight: bold;}
|
|
43
|
+
td.passed-all {color: green;}
|
|
44
|
+
td.passed-most {color: darkorange;}
|
|
45
|
+
td.passed-some {color: red;}
|
|
46
|
+
em.rfc2119 {
|
|
47
|
+
text-transform: lowercase;
|
|
48
|
+
font-variant: small-caps;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
color: #900;
|
|
51
|
+
}
|
|
52
|
+
a.testlink {
|
|
53
|
+
color: inherit;
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
}
|
|
56
|
+
a.testlink:hover {
|
|
57
|
+
text-decoration: underline;
|
|
58
|
+
}
|
|
59
|
+
pre > code {
|
|
60
|
+
color: #C83500;
|
|
61
|
+
}
|
|
62
|
+
/*]]>*/
|
|
63
|
+
</style>
|
|
64
|
+
</head>
|
|
65
|
+
<body prefix='bibo: http://purl.org/ontology/bibo/ earl: http://www.w3.org/ns/earl# doap: http://usefulinc.com/ns/doap# mf: http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#' vocab='http://www.w3.org/ns/earl#'>
|
|
66
|
+
<div class='head' role='contentinfo'>
|
|
67
|
+
<p>
|
|
68
|
+
<a href='http://www.w3.org/'>
|
|
69
|
+
<img alt='W3C' height='48' src='https://www.w3.org/Icons/w3c_home' width='72' />
|
|
70
|
+
</a>
|
|
71
|
+
</p>
|
|
72
|
+
<h1 class='title p-name' id='title' property='dc:title'>Turtle Test Results</h1>
|
|
73
|
+
<h2 id='w3c-document-28-october-2015'>
|
|
74
|
+
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
|
75
|
+
Document
|
|
76
|
+
<time class='dt-published' datetime='2023-04-03' property='dc:issued'>
|
|
77
|
+
03 April 2023
|
|
78
|
+
</time>
|
|
79
|
+
</h2>
|
|
80
|
+
<dl>
|
|
81
|
+
<dt>Editor:</dt>
|
|
82
|
+
<dd class='p-author h-card vcard' inlist='true' property='bibo:editor'><span property='rdf:first' typeof='foaf:Person'><meta content='Gregg Kellogg' property='foaf:name' /><a class='url fn u-url p-name' href='https://greggkellogg.net/' property='foaf:homepage'>Gregg Kellogg</a></span></dd>
|
|
83
|
+
</dl>
|
|
84
|
+
<p>
|
|
85
|
+
This document is also available in these non-normative formats:
|
|
86
|
+
<a href='earl.ttl' re='alternate'></a>
|
|
87
|
+
and
|
|
88
|
+
<a href='earl.jsonld' re='alternate'></a>
|
|
89
|
+
.
|
|
90
|
+
</p>
|
|
91
|
+
<p class='copyright'>
|
|
92
|
+
<a href='http://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>
|
|
93
|
+
Copyright
|
|
94
|
+
</a>
|
|
95
|
+
© 2010-2015
|
|
96
|
+
<a href='http://www.w3.org/'>
|
|
97
|
+
<sup>®</sup>
|
|
98
|
+
</a>
|
|
99
|
+
(<a href='http://www.csail.mit.edu/'><abbr title='Massachusetts Institute of Technology'>MIT</abbr></a>, <a href='http://www.ercim.eu/'><abbr title='European Research Consortium for Informatics and Mathematics'>ERCIM</abbr></a>, <a href='http://www.keio.ac.jp/'>Keio</a>, <a href='http://ev.buaa.edu.cn/'>Beihang</a>).
|
|
100
|
+
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
|
101
|
+
<a href='http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer'>liability</a>
|
|
102
|
+
,
|
|
103
|
+
<a href='http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks'>trademark</a>
|
|
104
|
+
and
|
|
105
|
+
<a href='http://www.w3.org/Consortium/Legal/copyright-documents' rel='license'>document use</a>
|
|
106
|
+
rules apply.
|
|
107
|
+
</p>
|
|
108
|
+
<hr />
|
|
109
|
+
</div>
|
|
110
|
+
<section about='' id='abstract' typeof='Software doap:Project'>
|
|
111
|
+
<h2>Abstract</h2>
|
|
112
|
+
<p>
|
|
113
|
+
This document report test subject conformance for and related specifications for
|
|
114
|
+
<span property='doap:name'>Turtle Test Results</span>
|
|
115
|
+
<span property='dc:bibliographicCitation'>[[TURTLE]]</span>
|
|
116
|
+
according to the requirements of the Evaluation and Report Language (EARL) 1.0 Schema [[EARL10-SCHEMA]].
|
|
117
|
+
</p>
|
|
118
|
+
<p>
|
|
119
|
+
This report is also available in alternate formats:
|
|
120
|
+
<a href='earl.ttl' rel='xhv:alternate'>
|
|
121
|
+
Turtle
|
|
122
|
+
</a>
|
|
123
|
+
and
|
|
124
|
+
<a href='earl.jsonld' rel='xhv:alternate'>
|
|
125
|
+
JSON-LD
|
|
126
|
+
</a>
|
|
127
|
+
</p>
|
|
128
|
+
</section>
|
|
129
|
+
<section id='sodt'>
|
|
130
|
+
<h2 id='h-sotd' resource='#h-sotd'>
|
|
131
|
+
<span property='xhv:role' resource='xhv:heading'>
|
|
132
|
+
Status of This Document
|
|
133
|
+
</span>
|
|
134
|
+
</h2>
|
|
135
|
+
<p>
|
|
136
|
+
This document is merely a<abbr title='World Wide Web Consortium'>W3C</abbr>-internal document.
|
|
137
|
+
It has no official standing of any kind and does not represent consensus of the
|
|
138
|
+
<abbr title='World Wide Web Consortium'>W3C</abbr>
|
|
139
|
+
Membership.
|
|
140
|
+
</p>
|
|
141
|
+
<p>
|
|
142
|
+
This report describes the state of implementation conformance at the time of publication.
|
|
143
|
+
</p>
|
|
144
|
+
</section>
|
|
145
|
+
<section id='toc'>
|
|
146
|
+
<h2 class='introductory' id='h-toc' resource='#h-toc'>
|
|
147
|
+
<span property='xhv:role' resource='xhv:heading'>
|
|
148
|
+
Table of Contents
|
|
149
|
+
</span>
|
|
150
|
+
</h2>
|
|
151
|
+
<ul class='toc' id='respecContents' role='directory'>
|
|
152
|
+
<li class='tocline'>
|
|
153
|
+
<a class='tocxref' href='#instructions-for-submitting-implementation-reports'>
|
|
154
|
+
<span class='secno'>1.</span>
|
|
155
|
+
Instructions for submitting implementation reports
|
|
156
|
+
</a>
|
|
157
|
+
</li>
|
|
158
|
+
<li class='tocline'>
|
|
159
|
+
<a class='tocxref' href='#test-manifests'>
|
|
160
|
+
<span class='secno'>2.</span>
|
|
161
|
+
Test Manifests
|
|
162
|
+
</a>
|
|
163
|
+
<ul class='toc'>
|
|
164
|
+
<li class='tocline'>
|
|
165
|
+
<span class='secno'>2.1</span>
|
|
166
|
+
<a class='tocxref' href='#Description-for-Example-Test-Cases'>
|
|
167
|
+
Description for Example Test Cases
|
|
168
|
+
</a>
|
|
169
|
+
</li>
|
|
170
|
+
</ul>
|
|
171
|
+
</li>
|
|
172
|
+
<li class='tocline'>
|
|
173
|
+
<a class='tocxref' href='#test-subjects'>
|
|
174
|
+
<span class='secno'>A.</span>
|
|
175
|
+
Test Subjects
|
|
176
|
+
</a>
|
|
177
|
+
<ul class='toc'>
|
|
178
|
+
<li class='tocline'>
|
|
179
|
+
<span class='secno'>A.1</span>
|
|
180
|
+
<a class='tocxref' href='#subj_0'>RDF::Turtle</a>
|
|
181
|
+
</li>
|
|
182
|
+
</ul>
|
|
183
|
+
</li>
|
|
184
|
+
<li class='tocline'>
|
|
185
|
+
<a class='tocxref' href='#individual-test-results'>
|
|
186
|
+
<span class='secno'>B.</span>
|
|
187
|
+
Individual Test Results
|
|
188
|
+
</a>
|
|
189
|
+
</li>
|
|
190
|
+
<li class='tocline'>
|
|
191
|
+
<a class='tocxref' href='#test-definitions'>
|
|
192
|
+
<span class='secno'>C.</span>
|
|
193
|
+
Test Definitions
|
|
194
|
+
</a>
|
|
195
|
+
</li>
|
|
196
|
+
<li class='tocline'>
|
|
197
|
+
<a class='tocxref' href='#report-generation-software'>
|
|
198
|
+
<span class='secno'>D.</span>
|
|
199
|
+
Report Generation Software
|
|
200
|
+
</a>
|
|
201
|
+
</li>
|
|
202
|
+
</ul>
|
|
203
|
+
</section>
|
|
204
|
+
<section id='instructions-for-submitting-implementation-reports'>
|
|
205
|
+
<h2 id="instructions-for-submitting-implementation-reports">Instructions for submitting implementation reports</h2>
|
|
206
|
+
<p>Tests should be run using the test manifests defined in the
|
|
207
|
+
<a href="#test-manifests">Test Manifests</a> Section.</p>
|
|
208
|
+
<p>The assumed base URI for the tests is <code><http://example/base/></code> if needed.</p>
|
|
209
|
+
<p>Reports should be submitted in Turtle format to <a href="xxx">xxx</a>
|
|
210
|
+
and include an <code>earl:Assertion</code>
|
|
211
|
+
for each test, referencing the test resource from the associated manifest
|
|
212
|
+
and the test subject being reported upon. An example test entry is be the following:</p>
|
|
213
|
+
<pre><code> [ a earl:Assertion;
|
|
214
|
+
earl:assertedBy <https://greggkellogg.net/foaf#me>;
|
|
215
|
+
earl:subject <--your-software-identifier-->;
|
|
216
|
+
earl:test <--uri-of-test-from-manifest>;
|
|
217
|
+
earl:result [
|
|
218
|
+
a earl:TestResult;
|
|
219
|
+
earl:outcome earl:passed;
|
|
220
|
+
dc:date "2016-12-26T10:18:04-08:00"^^xsd:dateTime];
|
|
221
|
+
earl:mode earl:automatic ] .
|
|
222
|
+
</code></pre>
|
|
223
|
+
<p>The Test Subject should be defined as a <code>doap:Project</code>, including the name,
|
|
224
|
+
homepage and developer(s) of the software (see <a href="https://github.com/edumbill/doap/wiki">DOAP</a>). Optionally, including the
|
|
225
|
+
project description and programming language. An example test subject description is the following:</p>
|
|
226
|
+
<pre><code> <> foaf:primaryTopic <--your-software-identifier--> ;
|
|
227
|
+
dc:issued "2016-12-26T10:18:04-08:00"^^xsd:dateTime ;
|
|
228
|
+
foaf:maker <https://greggkellogg.net/foaf#me> .
|
|
204
229
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
</
|
|
229
|
-
<
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
</
|
|
234
|
-
|
|
235
|
-
<
|
|
236
|
-
<
|
|
237
|
-
<span
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
<
|
|
241
|
-
<
|
|
242
|
-
|
|
243
|
-
</
|
|
244
|
-
|
|
245
|
-
<
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
<
|
|
251
|
-
</
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
<
|
|
255
|
-
<
|
|
256
|
-
<
|
|
257
|
-
|
|
258
|
-
<
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
<
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
</
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
<
|
|
271
|
-
<
|
|
272
|
-
|
|
273
|
-
</
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
<
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
</
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
</
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
</
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
<
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
<
|
|
300
|
-
|
|
301
|
-
</
|
|
302
|
-
|
|
303
|
-
<
|
|
304
|
-
<
|
|
305
|
-
<
|
|
306
|
-
<
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
<
|
|
310
|
-
<
|
|
311
|
-
<dt>
|
|
312
|
-
<dd>
|
|
313
|
-
<
|
|
314
|
-
|
|
315
|
-
</
|
|
316
|
-
</dd>
|
|
317
|
-
<dt>
|
|
318
|
-
<dd
|
|
319
|
-
<
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
</
|
|
323
|
-
<
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
</
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
<
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
<
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
</
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
</
|
|
347
|
-
</
|
|
348
|
-
</
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
</
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
<
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
</
|
|
363
|
-
<
|
|
364
|
-
<
|
|
365
|
-
<
|
|
366
|
-
|
|
367
|
-
</
|
|
368
|
-
|
|
369
|
-
<
|
|
370
|
-
<
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
</
|
|
374
|
-
<
|
|
375
|
-
<
|
|
376
|
-
<
|
|
377
|
-
|
|
378
|
-
</
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
<
|
|
382
|
-
</
|
|
383
|
-
<
|
|
384
|
-
|
|
385
|
-
<
|
|
386
|
-
|
|
387
|
-
</
|
|
388
|
-
</
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
<
|
|
392
|
-
<
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
</
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
<
|
|
399
|
-
<
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
<
|
|
403
|
-
|
|
404
|
-
<
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
<span property='doap:
|
|
409
|
-
|
|
410
|
-
<
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
<
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
</
|
|
419
|
-
|
|
420
|
-
|
|
230
|
+
<--your-software-identifier--> a doap:Project, earl:TestSubject, earl:Software ;
|
|
231
|
+
doap:name "Gregg Kellogg" ;
|
|
232
|
+
doap:homepage <--your-software-homepace--> ;
|
|
233
|
+
doap:license <--license-for-your-software--> ;
|
|
234
|
+
doap:shortdesc "--your-short-project-description--"@en ;
|
|
235
|
+
doap:description "--your-project-description--"@en ;
|
|
236
|
+
doap:created "2016-12-09"^^xsd:date ;
|
|
237
|
+
doap:programming-language "--your-implementation-language--" ;
|
|
238
|
+
doap:implements <--specification-uri--> ;
|
|
239
|
+
doap:category <--category-uris-for-specification-framework-and-implementation-language--> ;
|
|
240
|
+
doap:download-page <--your-project-repository--> ;
|
|
241
|
+
doap:mailing-list <--specification-public-mailing-list--@w3.org> ;
|
|
242
|
+
doap:bug-database <--your-project-repository--/issues> ;
|
|
243
|
+
doap:blog <--your-blog--> ;
|
|
244
|
+
doap:developer <https://greggkellogg.net/foaf#me> ;
|
|
245
|
+
foaf:maker <https://greggkellogg.net/foaf#me> ;
|
|
246
|
+
dc:title "--your-project-name--" ;
|
|
247
|
+
dc:description "--your-project-description--"@en ;
|
|
248
|
+
dc:date "2016-12-09"^^xsd:date ;
|
|
249
|
+
dc:creator <https://greggkellogg.net/foaf#me> ;
|
|
250
|
+
dc:isPartOf <--your-implementation-framework--> .
|
|
251
|
+
</code></pre>
|
|
252
|
+
<p>The software developer, either an organization or one or more individuals SHOULD be
|
|
253
|
+
referenced from <code>doap:developer</code> using <a href="http://xmlns.com/foaf/spec">FOAF</a>. For example:</p>
|
|
254
|
+
<pre><code> <--your-software-identifier--> a foaf:Person, earl:Assertor;
|
|
255
|
+
foaf:name "Gregg Kellogg";
|
|
256
|
+
foaf:title "Implementor";
|
|
257
|
+
foaf:homepage <https://greggkellogg.net/foaf#me> .
|
|
258
|
+
</code></pre>
|
|
259
|
+
</section>
|
|
260
|
+
<section id='test-manifests'>
|
|
261
|
+
<h2>
|
|
262
|
+
<span class='secno'>2.</span>
|
|
263
|
+
Test Manifests
|
|
264
|
+
</h2>
|
|
265
|
+
<section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='mf:Manifest Report'>
|
|
266
|
+
<h2>
|
|
267
|
+
<span class='secno'>2.1</span>
|
|
268
|
+
<span property='dc:title mf:name'>Example Test Cases</span>
|
|
269
|
+
</h2>
|
|
270
|
+
<table class='report'>
|
|
271
|
+
<tr>
|
|
272
|
+
<th>
|
|
273
|
+
Test
|
|
274
|
+
</th>
|
|
275
|
+
<th>
|
|
276
|
+
<a href='#subj_0'>RDF::Turtle</a>
|
|
277
|
+
</th>
|
|
278
|
+
</tr>
|
|
279
|
+
<tr inlist='true' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
|
|
280
|
+
<td>
|
|
281
|
+
<a href='#test_1fdd82ac4caf30510cabfdb0a5987ddd'>subm-test-00</a>
|
|
282
|
+
</td>
|
|
283
|
+
<td class='PASS' typeof='Assertion'>
|
|
284
|
+
<link href='https://greggkellogg.net/foaf#me' property='earl:assertedBy' />
|
|
285
|
+
<link href='http://example/manifest.ttl#testeval00' property='earl:test' />
|
|
286
|
+
<link href='https://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
|
287
|
+
<link href='earl:automatic' property='earl:mode' />
|
|
288
|
+
<span property='earl:result' typeof='TestResult'>
|
|
289
|
+
<span property='earl:outcome' resource='earl:passed'>
|
|
290
|
+
PASS
|
|
291
|
+
</span>
|
|
292
|
+
</span>
|
|
293
|
+
</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr inlist='true' rel='mf:entries' resource='_:b0' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
|
|
296
|
+
<td>
|
|
297
|
+
<a href='#test_9616fad74c7bf0cfba5d70f087ed0a96'>subm-test-01</a>
|
|
298
|
+
</td>
|
|
299
|
+
<td class='UNTESTED' typeof='Assertion'>
|
|
300
|
+
<link href='https://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
|
301
|
+
<span property='earl:result' typeof='TestResult'>
|
|
302
|
+
<span property='earl:outcome' resource='earl:untested'>
|
|
303
|
+
UNTESTED
|
|
304
|
+
</span>
|
|
305
|
+
</span>
|
|
306
|
+
</td>
|
|
307
|
+
</tr>
|
|
308
|
+
<tr class='summary'>
|
|
309
|
+
<td>
|
|
310
|
+
Percentage passed out of 2 Tests
|
|
311
|
+
</td>
|
|
312
|
+
<td class='passed-some'>
|
|
313
|
+
50.0%
|
|
314
|
+
</td>
|
|
315
|
+
</tr>
|
|
316
|
+
</table>
|
|
317
|
+
</section>
|
|
318
|
+
</section>
|
|
319
|
+
<section class='appendix' id='test-subjects'>
|
|
320
|
+
<h2>
|
|
321
|
+
<span class='secno'>A.</span>
|
|
322
|
+
Test Subjects
|
|
323
|
+
</h2>
|
|
324
|
+
<p>
|
|
325
|
+
This report was tested using the following test subjects:
|
|
326
|
+
</p>
|
|
327
|
+
<dl>
|
|
328
|
+
<dt id='subj_0'>
|
|
329
|
+
<span class='secno'>A.1</span>
|
|
330
|
+
<a href='https://rubygems.org/gems/rdf-turtle'>
|
|
331
|
+
<span about='https://rubygems.org/gems/rdf-turtle' property='doap:name'>RDF::Turtle</span>
|
|
332
|
+
</a>
|
|
333
|
+
</dt>
|
|
334
|
+
<dd property='earl:testSubjects' resource='https://rubygems.org/gems/rdf-turtle' typeof='doap:Project TestSubject Software'>
|
|
335
|
+
<dl>
|
|
336
|
+
<dt>Description</dt>
|
|
337
|
+
<dd lang='en' property='doap:description'>RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.</dd>
|
|
338
|
+
<dt>Release</dt>
|
|
339
|
+
<dd property='doap:release'><span property='doap:revision'>unknown</span></dd>
|
|
340
|
+
<dt>Programming Language</dt>
|
|
341
|
+
<dd property='doap:programming-language'>Ruby</dd>
|
|
342
|
+
<dt>Home Page</dt>
|
|
343
|
+
<dd>
|
|
344
|
+
<a href='https://ruby-rdf.github.io/rdf-turtle' property='doap:homepage'>
|
|
345
|
+
https://ruby-rdf.github.io/rdf-turtle
|
|
346
|
+
</a>
|
|
347
|
+
</dd>
|
|
348
|
+
<dt>Developer</dt>
|
|
349
|
+
<dd rel='doap:developer'>
|
|
350
|
+
<div resource='https://greggkellogg.net/foaf#me' typeof='foaf:Person Assertor'>
|
|
351
|
+
<a href='https://greggkellogg.net/foaf#me'>
|
|
352
|
+
<span property='foaf:name'>Gregg Kellogg</span>
|
|
353
|
+
</a>
|
|
354
|
+
<a href='https://greggkellogg.net/' property='foaf:homepage'>
|
|
355
|
+
https://greggkellogg.net/
|
|
356
|
+
</a>
|
|
357
|
+
</div>
|
|
358
|
+
</dd>
|
|
359
|
+
<dt>
|
|
360
|
+
Test Suite Compliance
|
|
361
|
+
</dt>
|
|
362
|
+
<dd>
|
|
363
|
+
<table class='report'>
|
|
364
|
+
<tbody>
|
|
365
|
+
<tr>
|
|
366
|
+
<td>
|
|
367
|
+
Example Test Cases
|
|
368
|
+
</td>
|
|
369
|
+
<td class='passed-some'>
|
|
370
|
+
1/2 (50.0%)
|
|
371
|
+
</td>
|
|
372
|
+
</tr>
|
|
373
|
+
</tbody>
|
|
374
|
+
</table>
|
|
375
|
+
</dd>
|
|
376
|
+
</dl>
|
|
377
|
+
</dd>
|
|
378
|
+
</dl>
|
|
379
|
+
</section>
|
|
380
|
+
<section class='appendix' id='individual-test-results' rel='xhv:related mf:report'>
|
|
381
|
+
<h2>
|
|
382
|
+
<span class='secno'>B.</span>
|
|
383
|
+
Individual Test Results
|
|
384
|
+
</h2>
|
|
385
|
+
<p>
|
|
386
|
+
Individual test results used to construct this report are available here:
|
|
387
|
+
</p>
|
|
388
|
+
<ul>
|
|
389
|
+
<li>
|
|
390
|
+
<a class='source' href='/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl'>/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl</a>
|
|
391
|
+
</li>
|
|
392
|
+
</ul>
|
|
393
|
+
</section>
|
|
394
|
+
<section class='appendix' id='test-definitions'>
|
|
395
|
+
<h2>
|
|
396
|
+
<span class='secno'>C.</span>
|
|
397
|
+
Test Definitions
|
|
398
|
+
</h2>
|
|
399
|
+
<dl>
|
|
400
|
+
<div inlist='true' property='mf:entries' resource='http://example/manifest.ttl'>
|
|
401
|
+
<dt id='test_1fdd82ac4caf30510cabfdb0a5987ddd' resource='http://example/manifest.ttl#testeval00'>
|
|
402
|
+
Test
|
|
403
|
+
<span property='dc:title mf:name'>subm-test-00</span>
|
|
404
|
+
</dt>
|
|
405
|
+
<dd resource='http://example/manifest.ttl#testeval00'>
|
|
406
|
+
<p property='dc:description rdfs:comment'></p>
|
|
407
|
+
<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>
|
|
408
|
+
<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>
|
|
409
|
+
</dd>
|
|
410
|
+
<dt id='test_9616fad74c7bf0cfba5d70f087ed0a96' resource='_:b0'>
|
|
411
|
+
Test
|
|
412
|
+
<span property='dc:title mf:name'>subm-test-01</span>
|
|
413
|
+
</dt>
|
|
414
|
+
<dd resource='_:b0'>
|
|
415
|
+
<p property='dc:description rdfs:comment'></p>
|
|
416
|
+
<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>
|
|
417
|
+
<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>
|
|
418
|
+
</dd>
|
|
419
|
+
</div>
|
|
420
|
+
</dl>
|
|
421
|
+
</section>
|
|
422
|
+
<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='https://rubygems.org/gems/earl-report' typeof='Software doap:Project'>
|
|
423
|
+
<h2>
|
|
424
|
+
<span class='secno'>D.</span>
|
|
425
|
+
Report Generation Software
|
|
426
|
+
</h2>
|
|
427
|
+
<p>
|
|
428
|
+
This report generated by
|
|
429
|
+
<span property='doap:name'><a href='https://rubygems.org/gems/earl-report'>earl-report</a></span>
|
|
430
|
+
<meta content='Earl Report summary generator' property='doap:shortdesc' />
|
|
431
|
+
<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
|
|
432
|
+
version
|
|
433
|
+
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.8.0' typeof='doap:Version'>
|
|
434
|
+
<span property='doap:revision'>0.8.0</span>
|
|
435
|
+
<meta content='earl-report-0.8.0' property='doap:name' />
|
|
436
|
+
</span>
|
|
437
|
+
an
|
|
438
|
+
<a href='http://unlicense.org' property='doap:license'>Unlicensed</a>
|
|
439
|
+
<span property='doap:programming-language'>Ruby</span>
|
|
440
|
+
application. More information is available at
|
|
441
|
+
<a href='https://github.com/gkellogg/earl-report' property='doap:homepage'>https://github.com/gkellogg/earl-report</a>
|
|
442
|
+
.
|
|
443
|
+
</p>
|
|
444
|
+
<p property='doap:developer' resource='https://greggkellogg.net/foaf#me' typeof='foaf:Person'>
|
|
445
|
+
This software is provided by
|
|
446
|
+
<a href='https://greggkellogg.net/' property='foaf:homepage'><span about='https://greggkellogg.net/foaf#me' property='foaf:name'>Gregg Kellogg</span></a>
|
|
447
|
+
in hopes that it might make the lives of conformance testers easier.
|
|
448
|
+
</p>
|
|
449
|
+
</section>
|
|
450
|
+
</body>
|
|
451
|
+
</html>
|
data/spec/test-files/results.ttl
CHANGED
|
@@ -79,5 +79,5 @@ _:b0 a <http://www.w3.org/ns/rdftest#TestTurtleEval>, earl:TestCriterion, earl:T
|
|
|
79
79
|
|
|
80
80
|
<https://github.com/gkellogg/earl-report/tree/0.8.0> a doap:Version;
|
|
81
81
|
doap:name "earl-report-0.8.0";
|
|
82
|
-
doap:created "
|
|
82
|
+
doap:created "2022-03-15"^^xsd:date;
|
|
83
83
|
doap:revision "0.8.0" .
|
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
|
+
version: 0.9.0
|
|
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: 2023-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rdf
|
|
@@ -16,154 +16,160 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '3.
|
|
19
|
+
version: '3.3'
|
|
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.3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: rdf-
|
|
28
|
+
name: rdf-turtle
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '3.
|
|
33
|
+
version: '3.3'
|
|
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: '3.
|
|
40
|
+
version: '3.3'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: rdf-
|
|
42
|
+
name: rdf-vocab
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '3.
|
|
47
|
+
version: '3.3'
|
|
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: '3.
|
|
54
|
+
version: '3.3'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name:
|
|
56
|
+
name: json-ld
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '3.
|
|
61
|
+
version: '3.3'
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '3.
|
|
68
|
+
version: '3.3'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
70
|
+
name: sparql
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '3.
|
|
75
|
+
version: '3.3'
|
|
76
76
|
type: :runtime
|
|
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.3'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
84
|
+
name: haml
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
|
-
- - "
|
|
87
|
+
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
89
|
+
version: '6.1'
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
|
-
- - "
|
|
94
|
+
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
96
|
+
version: '6.1'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
98
|
+
name: kramdown
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '
|
|
103
|
+
version: '2.4'
|
|
104
104
|
type: :runtime
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '
|
|
110
|
+
version: '2.4'
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
112
|
+
name: htmlbeautifier
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
115
|
- - "~>"
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: '
|
|
118
|
-
type: :
|
|
117
|
+
version: '1.4'
|
|
118
|
+
type: :development
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
122
122
|
- - "~>"
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: '
|
|
124
|
+
version: '1.4'
|
|
125
125
|
- !ruby/object:Gem::Dependency
|
|
126
126
|
name: nokogiri
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
|
129
129
|
- - "~>"
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: '1.
|
|
131
|
+
version: '1.15'
|
|
132
|
+
- - ">="
|
|
133
|
+
- !ruby/object:Gem::Version
|
|
134
|
+
version: 1.15.4
|
|
132
135
|
type: :development
|
|
133
136
|
prerelease: false
|
|
134
137
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
138
|
requirements:
|
|
136
139
|
- - "~>"
|
|
137
140
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: '1.
|
|
141
|
+
version: '1.15'
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: 1.15.4
|
|
139
145
|
- !ruby/object:Gem::Dependency
|
|
140
146
|
name: rdf-rdfa
|
|
141
147
|
requirement: !ruby/object:Gem::Requirement
|
|
142
148
|
requirements:
|
|
143
149
|
- - "~>"
|
|
144
150
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: '3.
|
|
151
|
+
version: '3.3'
|
|
146
152
|
type: :development
|
|
147
153
|
prerelease: false
|
|
148
154
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
155
|
requirements:
|
|
150
156
|
- - "~>"
|
|
151
157
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: '3.
|
|
158
|
+
version: '3.3'
|
|
153
159
|
- !ruby/object:Gem::Dependency
|
|
154
160
|
name: rspec
|
|
155
161
|
requirement: !ruby/object:Gem::Requirement
|
|
156
162
|
requirements:
|
|
157
163
|
- - "~>"
|
|
158
164
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: '3.
|
|
165
|
+
version: '3.12'
|
|
160
166
|
type: :development
|
|
161
167
|
prerelease: false
|
|
162
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
169
|
requirements:
|
|
164
170
|
- - "~>"
|
|
165
171
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: '3.
|
|
172
|
+
version: '3.12'
|
|
167
173
|
- !ruby/object:Gem::Dependency
|
|
168
174
|
name: rspec-its
|
|
169
175
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -263,29 +269,29 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
263
269
|
requirements:
|
|
264
270
|
- - ">="
|
|
265
271
|
- !ruby/object:Gem::Version
|
|
266
|
-
version: '
|
|
272
|
+
version: '3.0'
|
|
267
273
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
274
|
requirements:
|
|
269
275
|
- - ">="
|
|
270
276
|
- !ruby/object:Gem::Version
|
|
271
277
|
version: '0'
|
|
272
278
|
requirements: []
|
|
273
|
-
rubygems_version: 3.
|
|
279
|
+
rubygems_version: 3.4.19
|
|
274
280
|
signing_key:
|
|
275
281
|
specification_version: 4
|
|
276
282
|
summary: Earl Report summary generator
|
|
277
283
|
test_files:
|
|
278
|
-
- spec/spec_helper.rb
|
|
279
284
|
- spec/earl_report_spec.rb
|
|
285
|
+
- spec/spec_helper.rb
|
|
286
|
+
- spec/test-files/doap.ttl
|
|
280
287
|
- spec/test-files/foaf.ttl
|
|
281
288
|
- spec/test-files/manifest.ttl
|
|
282
|
-
- spec/test-files/doap.ttl
|
|
283
|
-
- spec/test-files/results.jsonld
|
|
284
|
-
- spec/test-files/results.ttl
|
|
285
|
-
- spec/test-files/report-no-test.ttl
|
|
286
289
|
- spec/test-files/report-complete.ttl
|
|
287
290
|
- spec/test-files/report-no-doap.ttl
|
|
288
|
-
- spec/test-files/results.html
|
|
289
291
|
- spec/test-files/report-no-foaf.ttl
|
|
290
|
-
- spec/test-files/test
|
|
292
|
+
- spec/test-files/report-no-test.ttl
|
|
293
|
+
- spec/test-files/results.html
|
|
294
|
+
- spec/test-files/results.jsonld
|
|
295
|
+
- spec/test-files/results.ttl
|
|
291
296
|
- spec/test-files/test-00.out
|
|
297
|
+
- spec/test-files/test-00.ttl
|