earl-report 0.4.7 → 0.4.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50eb02a189f3d91a96f8db733c5eab4d79964b1c0bf69126df582449bfb123ac
4
- data.tar.gz: 1596513fb59d3c36260bfde85451703daab944ab9eb6d48a3bef90ed24e1a0d3
3
+ metadata.gz: d6cc5d6fb36d7bd99ed84e9f141f1e169ab492096bbf53ea978955efdf17fb39
4
+ data.tar.gz: 97838f4eab1bf562050e629dc27b34fc7c82c714589f0a6efabce2873a2872fc
5
5
  SHA512:
6
- metadata.gz: 368a82a26e9750cec60efa8a34c2e0073035b3129cd4aa07a7ed4b1f175c7001877d7dc04c4d4d19c2077f372917ccd0e0f4ae77ebb3936b9b276b017e04984c
7
- data.tar.gz: 957d722026e0d0d4e9be7772495b95901b61a23ac50bbf644b58f872346c8d09558138959e00f82b22ad9144603ceed0d74ce2c2a27c9793ca0444c723081e0f
6
+ metadata.gz: 86c5d742c3b08343123c7c8f4f4d898b15f1cccce163a21a31a89fbea9b50d22eb4f309c22ec8e402e5027d4b88f56490820340265a1ea419fb9c96863017ca1
7
+ data.tar.gz: c0ee051dd41ce7064e48ad352b074ec73054909b56516e4fcf44f07f885ffcaf38e4cf1a11bd1d60f2759e005c62450b8f9e4788539361852b22445a76223380
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.7
1
+ 0.4.8
@@ -33,12 +33,13 @@ class EarlReport
33
33
  PREFIX doap: <http://usefulinc.com/ns/doap#>
34
34
  PREFIX foaf: <http://xmlns.com/foaf/0.1/>
35
35
 
36
- SELECT DISTINCT ?uri ?name ?doapDesc ?homepage ?language ?developer ?devName ?devType ?devHomepage
36
+ SELECT DISTINCT ?uri ?name ?doapDesc ?revision ?homepage ?language ?developer ?devName ?devType ?devHomepage
37
37
  WHERE {
38
38
  ?uri a doap:Project; doap:name ?name; doap:developer ?developer .
39
39
  OPTIONAL { ?uri doap:homepage ?homepage . }
40
40
  OPTIONAL { ?uri doap:description ?doapDesc . }
41
41
  OPTIONAL { ?uri doap:programming-language ?language . }
42
+ OPTIONAL { ?uri doap:release [ doap:revision ?revision] .}
42
43
  OPTIONAL { ?developer a ?devType .}
43
44
  OPTIONAL { ?developer foaf:name ?devName .}
44
45
  OPTIONAL { ?developer foaf:homepage ?devHomepage .}
@@ -78,8 +79,9 @@ class EarlReport
78
79
 
79
80
  TEST_FRAME = {
80
81
  "@context" => {
81
- "@vocab" => "http://www.w3.org/ns/earl#",
82
- "foaf:homepage" => {"@type" => "@id"},
82
+ "@version" => 1.1,
83
+ "@vocab" => "http://www.w3.org/ns/earl#",
84
+ "foaf:homepage"=> {"@type" => "@id"},
83
85
  "dc" => "http://purl.org/dc/terms/",
84
86
  "doap" => "http://usefulinc.com/ns/doap#",
85
87
  "earl" => "http://www.w3.org/ns/earl#",
@@ -123,8 +125,10 @@ class EarlReport
123
125
  },
124
126
  "testSubjects" => {
125
127
  "@embed" => "@always",
128
+ "@requireAll" => false,
126
129
  "@type" => "earl:TestSubject",
127
130
  "developer" => {"@embed" => "@always"},
131
+ "release" => {"@embed" => "@always"},
128
132
  "homepage" => {"@embed" => "@never"}
129
133
  },
130
134
  "entries" => [{
@@ -289,6 +293,10 @@ class EarlReport
289
293
  graph << RDF::Statement(solution[:developer], RDF.type, solution[:devType]) if solution[:devType]
290
294
  graph << RDF::Statement(solution[:developer], RDF::Vocab::FOAF.name, devName) if devName
291
295
  graph << RDF::Statement(solution[:developer], RDF::Vocab::FOAF.homepage, solution[:devHomepage]) if solution[:devHomepage]
296
+
297
+ rev = RDF::Node.new
298
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP.release, rev)
299
+ graph << RDF::Statement(rev, RDF::Vocab::DOAP.revision, (solution[:revision] || "unknown"))
292
300
  end
293
301
 
294
302
  assertion_graph << file_graph
@@ -473,13 +481,13 @@ class EarlReport
473
481
  def json_hash
474
482
  @json_hash ||= begin
475
483
  # Customized JSON-LD output
476
- r = JSON::LD::API.fromRDF(graph) do |expanded|
484
+ result = JSON::LD::API.fromRDF(graph) do |expanded|
477
485
  JSON::LD::API.frame(expanded, TEST_FRAME, expanded: true, embed: '@never')
478
486
  end
479
- unless r.is_a?(Hash) && r.has_key?('@graph') && Array(r["@graph"]).length == 1
480
- raise "Expected JSON result to have a single entry, it had #{Array(r["@graph"]).length rescue 'unknown'} entries"
487
+ unless result.is_a?(Hash)
488
+ raise "Expected JSON result to have a single entry, it had #{result.length rescue 'unknown'} entries"
481
489
  end
482
- {"@context" => r["@context"]}.merge(r["@graph"].first)
490
+ result
483
491
  end
484
492
  end
485
493
 
@@ -369,6 +369,13 @@
369
369
  %dt= "Description"
370
370
  %dd{property: "doap:description", lang: 'en'}<
371
371
  ~ CGI.escapeHTML subject['doapDesc']
372
+ - if subject['release']
373
+ - subject['release'] = subject['release'].first if subject['release'].is_a?(Array)
374
+ - subject['release']['revision'] = subject['release']['revision']['@value'] if subject['release']['revision'].is_a?(Hash)
375
+ %dt= "Release"
376
+ %dd{property: "doap:release"}<
377
+ %span{property: "doap:revision"}<
378
+ ~ CGI.escapeHTML subject['release']['revision'].to_s
372
379
  - if subject['language']
373
380
  - subject['language'] = subject['language']['@value'] if subject['language'].is_a?(Hash)
374
381
  %dt= "Programming Language"
@@ -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='2019-07-09' property='dc:issued'>
77
- 09 July 2019
76
+ <time class='dt-published' datetime='2019-09-06' property='dc:issued'>
77
+ 06 September 2019
78
78
  </time>
79
79
  </h2>
80
80
  <dl>
@@ -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='Report mf:Manifest'>
234
+ <section id='Description-for-Example-Test-Cases' resource='http://example/manifest.ttl' typeof='mf:Manifest Report'>
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='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
248
+ <tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='TestCase TestCriterion http://www.w3.org/ns/rdftest#TestTurtleEval'>
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='_:b1' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
264
+ <tr inlist='inlist' rel='mf:entries' resource='_:b2' typeof='TestCase TestCriterion http://www.w3.org/ns/rdftest#TestTurtleEval'>
265
265
  <td>
266
- <a href='#test_b4d4f9531721bf1a6e4562f27353abd3'>subm-test-01</a>
266
+ <a href='#test_9430e2f85f26fd582ac7fcccd7f50d46'>subm-test-01</a>
267
267
  </td>
268
268
  <td class='UNTESTED' property='earl:assertions' typeof='Assertion'>
269
- <link href='_:b1' property='earl:test' />
269
+ <link href='_:b2' 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,10 +301,12 @@ 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='Software TestSubject doap:Project'>
304
+ <dd property='earl:testSubjects' resource='http://rubygems.org/gems/rdf-turtle' typeof='TestSubject Software doap:Project'>
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>
308
+ <dt>Release</dt>
309
+ <dd property='doap:release'><span property='doap:revision'>unknown</span></dd>
308
310
  <dt>Programming Language</dt>
309
311
  <dd property='doap:programming-language'>Ruby</dd>
310
312
  <dt>Home Page</dt>
@@ -375,11 +377,11 @@ Test
375
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>
376
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>
377
379
  </dd>
378
- <dt id='test_b4d4f9531721bf1a6e4562f27353abd3' resource='_:b1'>
380
+ <dt id='test_9430e2f85f26fd582ac7fcccd7f50d46' resource='_:b2'>
379
381
  Test
380
382
  <span property='dc:title mf:name'>subm-test-01</span>
381
383
  </dt>
382
- <dd resource='_:b1'>
384
+ <dd resource='_:b2'>
383
385
  <p property='dc:description rdfs:comment'></p>
384
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>
385
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>
@@ -398,9 +400,9 @@ This report generated by
398
400
  <meta content='Earl Report summary generator' property='doap:shortdesc' />
399
401
  <meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
400
402
  version
401
- <span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.6' typeof='doap:Version'>
402
- <span property='doap:revision'>0.4.6</span>
403
- <meta content='earl-report-0.4.6' property='doap:name' />
403
+ <span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.7' typeof='doap:Version'>
404
+ <span property='doap:revision'>0.4.7</span>
405
+ <meta content='earl-report-0.4.7' property='doap:name' />
404
406
  <meta datatype='xsd:date' property='doap:created' />
405
407
  </span>
406
408
  an
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "@context": {
3
+ "@version": 1.1,
3
4
  "@vocab": "http://www.w3.org/ns/earl#",
4
5
  "foaf:homepage": {
5
6
  "@type": "@id"
@@ -106,120 +107,126 @@
106
107
  "Software",
107
108
  "doap:Project"
108
109
  ],
109
- "name": "Turtle Test Results",
110
- "bibRef": "[[TURTLE]]",
111
- "generatedBy": {
112
- "@id": "http://rubygems.org/gems/earl-report",
113
- "@type": [
114
- "Software",
115
- "doap:Project"
116
- ],
117
- "shortdesc": "Earl Report summary generator",
118
- "name": "earl-report",
119
- "developer": [
120
- {
121
- "@id": "http://greggkellogg.net/foaf#me",
122
- "@type": [
123
- "Assertor",
124
- "foaf:Person"
125
- ],
126
- "foaf:name": "Gregg Kellogg",
127
- "foaf:homepage": "http://greggkellogg.net/"
128
- }
129
- ],
130
- "doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports",
131
- "language": "Ruby",
132
- "release": {
133
- "@id": "https://github.com/gkellogg/earl-report/tree/0.4.6",
134
- "@type": "doap:Version",
135
- "name": "earl-report-0.4.6",
136
- "doap:created": {
137
- "@value": "2017-07-02",
138
- "@type": "http://www.w3.org/2001/XMLSchema#date"
139
- },
140
- "revision": "0.4.6"
141
- },
142
- "homepage": "https://github.com/gkellogg/earl-report",
143
- "license": "http://unlicense.org"
144
- },
145
110
  "entries": [
146
111
  {
147
112
  "@id": "http://example/manifest.ttl",
148
113
  "@type": [
149
- "Report",
150
- "mf:Manifest"
114
+ "mf:Manifest",
115
+ "Report"
151
116
  ],
152
- "rdfs:comment": "Description for Example Test Cases",
153
117
  "entries": [
154
118
  {
155
119
  "@id": "http://example/manifest.ttl#testeval00",
156
120
  "@type": [
157
- "http://www.w3.org/ns/rdftest#TestTurtleEval",
121
+ "TestCase",
158
122
  "TestCriterion",
159
- "TestCase"
123
+ "http://www.w3.org/ns/rdftest#TestTurtleEval"
160
124
  ],
161
- "testResult": "http://example/test-00.out",
162
- "rdfs:comment": "Blank subject",
125
+ "testAction": "http://example/test-00.ttl",
126
+ "title": "subm-test-00",
163
127
  "assertions": [
164
128
  {
165
- "@id": "_:b3",
166
129
  "@type": "Assertion",
167
- "test": "http://example/manifest.ttl#testeval00",
168
- "mode": "earl:automatic",
169
- "subject": "http://rubygems.org/gems/rdf-turtle",
170
130
  "assertedBy": "http://greggkellogg.net/foaf#me",
131
+ "subject": "http://rubygems.org/gems/rdf-turtle",
171
132
  "result": {
172
- "@id": "_:b4",
173
133
  "@type": "TestResult",
174
134
  "outcome": "earl:passed"
175
- }
135
+ },
136
+ "test": "http://example/manifest.ttl#testeval00",
137
+ "mode": "earl:automatic"
176
138
  }
177
139
  ],
178
- "title": "subm-test-00",
179
- "testAction": "http://example/test-00.ttl"
140
+ "testResult": "http://example/test-00.out",
141
+ "rdfs:comment": "Blank subject"
180
142
  },
181
143
  {
182
- "@id": "_:b0",
144
+ "@id": "_:b2",
183
145
  "@type": [
184
- "http://www.w3.org/ns/rdftest#TestTurtleEval",
146
+ "TestCase",
185
147
  "TestCriterion",
186
- "TestCase"
148
+ "http://www.w3.org/ns/rdftest#TestTurtleEval"
187
149
  ],
188
- "testResult": "http://example/test-01.out",
189
- "rdfs:comment": "@prefix and qnames",
150
+ "testAction": "http://example/test-01.ttl",
151
+ "title": "subm-test-01",
190
152
  "assertions": [
191
153
  {
192
- "@id": "_:b1",
193
154
  "@type": "Assertion",
194
- "test": "_:b0",
195
155
  "subject": "http://rubygems.org/gems/rdf-turtle",
196
156
  "result": {
197
- "@id": "_:b2",
198
157
  "@type": "TestResult",
199
158
  "outcome": "earl:untested"
200
159
  },
160
+ "test": "_:b2",
201
161
  "assertedBy": null
202
162
  }
203
163
  ],
204
- "title": "subm-test-01",
205
- "testAction": "http://example/test-01.ttl"
164
+ "testResult": "http://example/test-01.out",
165
+ "rdfs:comment": "@prefix and qnames"
206
166
  }
207
167
  ],
208
- "title": "Example Test Cases"
168
+ "title": "Example Test Cases",
169
+ "rdfs:comment": "Description for Example Test Cases"
209
170
  }
210
171
  ],
172
+ "generatedBy": {
173
+ "@id": "http://rubygems.org/gems/earl-report",
174
+ "@type": [
175
+ "Software",
176
+ "doap:Project"
177
+ ],
178
+ "shortdesc": "Earl Report summary generator",
179
+ "homepage": "https://github.com/gkellogg/earl-report",
180
+ "language": "Ruby",
181
+ "license": "http://unlicense.org",
182
+ "doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports",
183
+ "developer": [
184
+ {
185
+ "@id": "http://greggkellogg.net/foaf#me",
186
+ "@type": [
187
+ "Assertor",
188
+ "foaf:Person"
189
+ ],
190
+ "foaf:homepage": "http://greggkellogg.net/",
191
+ "foaf:name": "Gregg Kellogg"
192
+ }
193
+ ],
194
+ "name": "earl-report",
195
+ "release": {
196
+ "@id": "https://github.com/gkellogg/earl-report/tree/0.4.7",
197
+ "@type": "doap:Version",
198
+ "doap:created": {
199
+ "@value": "2019-07-09",
200
+ "@type": "http://www.w3.org/2001/XMLSchema#date"
201
+ },
202
+ "name": "earl-report-0.4.7",
203
+ "revision": "0.4.7"
204
+ }
205
+ },
211
206
  "assertions": [
212
207
  "/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
213
208
  ],
209
+ "bibRef": "[[TURTLE]]",
210
+ "name": "Turtle Test Results",
214
211
  "testSubjects": [
215
212
  {
216
213
  "@id": "http://rubygems.org/gems/rdf-turtle",
217
214
  "@type": [
218
- "Software",
219
215
  "TestSubject",
216
+ "Software",
220
217
  "doap:Project"
221
218
  ],
222
- "name": "RDF::Turtle",
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
+ "doapDesc": "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.",
223
230
  "developer": [
224
231
  {
225
232
  "@id": "http://greggkellogg.net/foaf#me",
@@ -227,13 +234,11 @@
227
234
  "Assertor",
228
235
  "foaf:Person"
229
236
  ],
230
- "foaf:name": "Gregg Kellogg",
231
- "foaf:homepage": "http://greggkellogg.net/"
237
+ "foaf:homepage": "http://greggkellogg.net/",
238
+ "foaf:name": "Gregg Kellogg"
232
239
  }
233
240
  ],
234
- "homepage": "http://ruby-rdf.github.com/rdf-turtle",
235
- "language": "Ruby",
236
- "doapDesc": "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."
241
+ "name": "RDF::Turtle"
237
242
  }
238
243
  ]
239
244
  }
@@ -18,15 +18,15 @@
18
18
 
19
19
  # Manifests
20
20
 
21
- <http://example/manifest.ttl> a earl:Report,
22
- mf:Manifest;
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> _:g70364851762280);
24
+ mf:entries (<http://example/manifest.ttl#testeval00> _:g70346484879600);
25
25
  mf:name "Example Test Cases" .
26
26
 
27
- <http://example/manifest.ttl#testeval00> a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
27
+ <http://example/manifest.ttl#testeval00> a earl:TestCase,
28
28
  earl:TestCriterion,
29
- earl:TestCase;
29
+ <http://www.w3.org/ns/rdftest#TestTurtleEval>;
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
- _:g70364851762280 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
46
+ _:g70346484879600 a earl:TestCase,
47
47
  earl:TestCriterion,
48
- earl:TestCase;
48
+ <http://www.w3.org/ns/rdftest#TestTurtleEval>;
49
49
  rdfs:comment "@prefix and qnames";
50
50
  mf:action <http://example/test-01.ttl>;
51
51
  mf:name "subm-test-01";
@@ -57,19 +57,20 @@ _:g70364851762280 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 _:g70364851762280
60
+ earl:test _:g70346484879600
61
61
  ] .
62
62
 
63
63
  # Test Subjects
64
64
 
65
- <http://rubygems.org/gems/rdf-turtle> a earl:Software,
66
- earl:TestSubject,
65
+ <http://rubygems.org/gems/rdf-turtle> a earl:TestSubject,
66
+ earl:Software,
67
67
  doap:Project;
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>;
71
71
  doap:name "RDF::Turtle";
72
- doap:programming-language "Ruby" .
72
+ doap:programming-language "Ruby";
73
+ doap:release [doap:revision "unknown"], [doap:revision "unknown"] .
73
74
 
74
75
  <http://greggkellogg.net/foaf#me> a earl:Assertor,
75
76
  foaf:Person;
@@ -86,10 +87,10 @@ _:g70364851762280 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
86
87
  doap:license <http://unlicense.org>;
87
88
  doap:name "earl-report";
88
89
  doap:programming-language "Ruby";
89
- doap:release <https://github.com/gkellogg/earl-report/tree/0.4.6>;
90
+ doap:release <https://github.com/gkellogg/earl-report/tree/0.4.7>;
90
91
  doap:shortdesc "Earl Report summary generator"@en .
91
92
 
92
- <https://github.com/gkellogg/earl-report/tree/0.4.6> a doap:Version;
93
- doap:created "2017-07-02"^^xsd:date;
94
- doap:name "earl-report-0.4.6";
95
- doap:revision "0.4.6" .
93
+ <https://github.com/gkellogg/earl-report/tree/0.4.7> a doap:Version;
94
+ doap:created "2019-07-09"^^xsd:date;
95
+ doap:name "earl-report-0.4.7";
96
+ doap:revision "0.4.7" .
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.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Kellogg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-09 00:00:00.000000000 Z
11
+ date: 2019-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: linkeddata
@@ -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.0.3
184
+ rubygems_version: 3.0.4
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: Earl Report summary generator