earl-report 0.4.1 → 0.4.2

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
  SHA1:
3
- metadata.gz: 1f48a7efb4101689b295d5f8ffc5e5921a5e6c85
4
- data.tar.gz: d21010e7dcf61659ef1afb68bdc0b8353fd1df6a
3
+ metadata.gz: 2293e978b124f359dd97d99b831bcbb4b0b10fc7
4
+ data.tar.gz: 48ac8820551c61ec4c9d7772558814b291e85370
5
5
  SHA512:
6
- metadata.gz: cf1b903bdbc2e2190ae8411b8ce9a273edaa73887eedec5917dc8df0a17a01cda40073805bda9623658cc08979fcdd2b482895f44cb26edb5ebd4bb645d286d0
7
- data.tar.gz: 076a2ee44c17f7ad9d916957d14c639ce427259026f743189f544720a1ebefc8cc7983d338b4ff1fa65a1a5c5e4178e7d8595aec2620aed9fca5439ba5df8db5
6
+ metadata.gz: 5a6f6a1717f91e35ca32dee612e6f24ecaf8562e224b0ab69d0aedac34a36ad5b85026c6941c0d1ff7a209154ab990f12c7bb6eed9556e036c7fbd3d9c917cfd
7
+ data.tar.gz: 7ded92c978e26feae7828bb9a0917d0ce01919d4596c4b96346bb69ce849f03b2351814b2128c1250879972bb6a740e5b0fdf270b1cfb940014d375223cc853d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.4.2
@@ -270,19 +270,19 @@ class EarlReport
270
270
  name = solution[:name].to_s if solution[:name]
271
271
  language = solution[:language].to_s if solution[:language]
272
272
  doapDesc = solution[:doapDesc] if solution[:doapDesc]
273
- doapDesc.language ||= :en
273
+ doapDesc.language ||= :en if doapDesc
274
274
  devName = solution[:devName].to_s if solution[:devName]
275
- graph << RDF::Statement(solution[:uri], RDF.type, RDF::DOAP.Project)
275
+ graph << RDF::Statement(solution[:uri], RDF.type, RDF::Vocab::DOAP.Project)
276
276
  graph << RDF::Statement(solution[:uri], RDF.type, EARL.TestSubject)
277
277
  graph << RDF::Statement(solution[:uri], RDF.type, EARL.Software)
278
- graph << RDF::Statement(solution[:uri], RDF::DOAP.name, name)
279
- graph << RDF::Statement(solution[:uri], RDF::DOAP.developer, solution[:developer])
280
- graph << RDF::Statement(solution[:uri], RDF::DOAP.homepage, solution[:homepage]) if solution[:homepage]
281
- graph << RDF::Statement(solution[:uri], RDF::DOAP.description, doapDesc) if doapDesc
282
- graph << RDF::Statement(solution[:uri], RDF::DOAP[:"programming-language"], language) if solution[:language]
278
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP.name, name)
279
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP.developer, solution[:developer])
280
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP.homepage, solution[:homepage]) if solution[:homepage]
281
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP.description, doapDesc) if doapDesc
282
+ graph << RDF::Statement(solution[:uri], RDF::Vocab::DOAP[:"programming-language"], language) if solution[:language]
283
283
  graph << RDF::Statement(solution[:developer], RDF.type, solution[:devType]) if solution[:devType]
284
- graph << RDF::Statement(solution[:developer], RDF::FOAF.name, devName) if devName
285
- graph << RDF::Statement(solution[:developer], RDF::FOAF.homepage, solution[:devHomepage]) if solution[:devHomepage]
284
+ graph << RDF::Statement(solution[:developer], RDF::Vocab::FOAF.name, devName) if devName
285
+ graph << RDF::Statement(solution[:developer], RDF::Vocab::FOAF.homepage, solution[:devHomepage]) if solution[:devHomepage]
286
286
  end
287
287
 
288
288
  assertion_graph << file_graph
@@ -492,11 +492,11 @@ class EarlReport
492
492
 
493
493
  # Write each manifest
494
494
  io.puts "\n# Manifests"
495
- RDF::List.new(graph.first_object(subject: top_level, predicate: MF[:entries]), graph).each do |manifest|
495
+ RDF::List.new(subject: graph.first_object(subject: top_level, predicate: MF[:entries]), graph: graph).each do |manifest|
496
496
  writer.send(:statement, manifest)
497
497
 
498
498
  # Write each test case
499
- RDF::List.new(graph.first_object(subject: manifest, predicate: MF[:entries]), graph).each do |tc|
499
+ RDF::List.new(subject: graph.first_object(subject: manifest, predicate: MF[:entries]), graph: graph).each do |tc|
500
500
  writer.send(:statement, tc)
501
501
  end
502
502
  end
@@ -507,7 +507,7 @@ class EarlReport
507
507
  writer.send(:statement, s.object)
508
508
 
509
509
  # Write each developer
510
- graph.query(subject: s.object, predicate: RDF::DOAP.developer).each do |d|
510
+ graph.query(subject: s.object, predicate: RDF::Vocab::DOAP.developer).each do |d|
511
511
  writer.send(:statement, d.object)
512
512
  end
513
513
  end
@@ -83,7 +83,7 @@ describe EarlReport do
83
83
  end
84
84
 
85
85
  it "loads foaf" do
86
- expect(subject.graph.objects.to_a).to include(RDF::FOAF.Person)
86
+ expect(subject.graph.objects.to_a).to include(RDF::Vocab::FOAF.Person)
87
87
  end
88
88
  end
89
89
 
@@ -120,7 +120,7 @@ describe EarlReport do
120
120
  end
121
121
 
122
122
  it "loads foaf" do
123
- expect(subject.graph.objects.to_a).to include(RDF::FOAF.Person)
123
+ expect(subject.graph.objects.to_a).to include(RDF::Vocab::FOAF.Person)
124
124
  end
125
125
  end
126
126
 
@@ -157,7 +157,7 @@ describe EarlReport do
157
157
  end
158
158
 
159
159
  it "loads foaf" do
160
- expect(subject.graph.objects.to_a).to include(RDF::FOAF.Person)
160
+ expect(subject.graph.objects.to_a).to include(RDF::Vocab::FOAF.Person)
161
161
  end
162
162
  end
163
163
  end
@@ -172,7 +172,11 @@ describe EarlReport do
172
172
  'bibRef' => "[[TURTLE]]",
173
173
  'name' => "Turtle Test Results"
174
174
  }.each do |prop, value|
175
- specify(prop) {expect(subject[prop]).to eq value}
175
+ if value.is_a?(Array)
176
+ specify(prop) {expect(subject[prop]).to include(*value)}
177
+ else
178
+ specify(prop) {expect(subject[prop]).to eq value}
179
+ end
176
180
  end
177
181
 
178
182
  %w(assertions generatedBy testSubjects entries).each do |key|
@@ -241,16 +245,20 @@ describe EarlReport do
241
245
  end
242
246
 
243
247
  context "earl:Software" do
244
- specify {should match(/<> a earl:Software,\s+doap:Project\s*[;\.]$/m)}
248
+ specify {should match(%r{<> a [^;]*earl:Software[^;]*;$}m)}
249
+ specify {should match(%r{<> a [^;]*doap:Project[^;]*;$}m)}
245
250
  specify {should match(/ doap:name "#{json_hash['name']}"\s*[;\.]$/)}
246
251
  end
247
252
 
248
253
  context "Subject Definitions" do
249
- specify {should match(/<#{ts['@id']}> a doap:Project,\s+earl:TestSubject,\s+earl:Software;$/m)}
254
+ specify {should match(%r{<#{ts['@id']}> a [^;]*doap:Project[^;]*;$}m)}
255
+ specify {should match(%r{<#{ts['@id']}> a [^;]*earl:TestSubject[^;]*;$}m)}
256
+ specify {should match(%r{<#{ts['@id']}> a [^;]*earl:Software[^;]*;$}m)}
250
257
  end
251
258
 
252
259
  context "Manifest Definitions" do
253
- specify {should match(/<#{tm['@id']}> a mf:Manifest,\s+earl:Report\s*[;\.]$/m)}
260
+ specify {should match(%r{<#{tm['@id']}> a [^;]*mf:Manifest[^;]*;$}m)}
261
+ specify {should match(%r{<#{tm['@id']}> a [^;]*earl:Report[^;]*;$}m)}
254
262
  end
255
263
 
256
264
  context "Assertion" do
@@ -6,10 +6,10 @@ require 'rspec'
6
6
  require 'rspec/its'
7
7
  require 'simplecov'
8
8
  require 'coveralls'
9
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
9
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
10
10
  SimpleCov::Formatter::HTMLFormatter,
11
11
  Coveralls::SimpleCov::Formatter
12
- ]
12
+ ])
13
13
  SimpleCov.start do
14
14
  add_filter "/spec/"
15
15
  end
@@ -27,7 +27,7 @@
27
27
  shortName: "turtle-earl",
28
28
  subtitle: "Turtle Implementation Conformance Report",
29
29
  // if you wish the publication date to be other than today, set this
30
- publishDate: "2015/10/04",
30
+ publishDate: "2016/06/30",
31
31
 
32
32
  // if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
33
33
  // and its maturity status
@@ -141,7 +141,6 @@
141
141
  </h2>
142
142
  <section resource='http://example/manifest.ttl' typeof='mf:Manifest Report'>
143
143
  <h2 property='dc:title mf:name'>Example Test Cases</h2>
144
- <p lang='en' property='rdfs:comment'>5</p>
145
144
  <table class='report'>
146
145
  <tr>
147
146
  <th>
@@ -151,7 +150,7 @@
151
150
  <a href='#subj_0'>RDF::Turtle</a>
152
151
  </th>
153
152
  </tr>
154
- <tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
153
+ <tr inlist='inlist' rel='mf:entries' resource='http://example/manifest.ttl#testeval00' typeof='TestCriterion TestCase http://www.w3.org/ns/rdftest#TestTurtleEval'>
155
154
  <td>
156
155
  <a href='#test_1fdd82ac4caf30510cabfdb0a5987ddd'>subm-test-00</a>
157
156
  </td>
@@ -167,14 +166,13 @@
167
166
  </span>
168
167
  </td>
169
168
  </tr>
170
- <tr inlist='inlist' rel='mf:entries' resource='_:b2' typeof='http://www.w3.org/ns/rdftest#TestTurtleEval TestCriterion TestCase'>
169
+ <tr inlist='inlist' rel='mf:entries' resource='_:b0' typeof='TestCriterion TestCase http://www.w3.org/ns/rdftest#TestTurtleEval'>
171
170
  <td>
172
- <a href='#test_9430e2f85f26fd582ac7fcccd7f50d46'>subm-test-01</a>
171
+ <a href='#test_9616fad74c7bf0cfba5d70f087ed0a96'>subm-test-01</a>
173
172
  </td>
174
173
  <td class='UNTESTED' property='earl:assertions' typeof='Assertion'>
175
- <link href='_:b2' property='earl:test' />
174
+ <link href='_:b0' property='earl:test' />
176
175
  <link href='http://rubygems.org/gems/rdf-turtle' property='earl:subject' />
177
- <link href='6' property='earl:mode' />
178
176
  <span property='earl:result' typeof='TestResult'>
179
177
  <span property='earl:outcome' resource='earl:untested'>
180
178
  UNTESTED
@@ -206,7 +204,7 @@
206
204
  <span about='http://rubygems.org/gems/rdf-turtle' property='doap:name'>RDF::Turtle</span>
207
205
  </a>
208
206
  </dt>
209
- <dd property='earl:testSubjects' resource='http://rubygems.org/gems/rdf-turtle' typeof='doap:Project TestSubject Software'>
207
+ <dd property='earl:testSubjects' resource='http://rubygems.org/gems/rdf-turtle' typeof='Software doap:Project TestSubject'>
210
208
  <dl>
211
209
  <dt>Description</dt>
212
210
  <dd lang='en' property='doap:description'>RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.</dd>
@@ -274,16 +272,16 @@
274
272
  <span property='dc:title mf:name'>subm-test-00</span>
275
273
  </dt>
276
274
  <dd resource='http://example/manifest.ttl#testeval00'>
277
- <p property='dc:description rdfs:comment'>7</p>
275
+ <p property='dc:description rdfs:comment'></p>
278
276
  <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>
279
277
  <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>
280
278
  </dd>
281
- <dt id='test_9430e2f85f26fd582ac7fcccd7f50d46' resource='_:b2'>
279
+ <dt id='test_9616fad74c7bf0cfba5d70f087ed0a96' resource='_:b0'>
282
280
  Test
283
281
  <span property='dc:title mf:name'>subm-test-01</span>
284
282
  </dt>
285
- <dd resource='_:b2'>
286
- <p property='dc:description rdfs:comment'>7</p>
283
+ <dd resource='_:b0'>
284
+ <p property='dc:description rdfs:comment'></p>
287
285
  <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>
288
286
  <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>
289
287
  </dd>
@@ -300,10 +298,10 @@
300
298
  <meta content='Earl Report summary generator' property='doap:shortdesc' />
301
299
  <meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' property='doap:description' />
302
300
  version
303
- <span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.0' typeof='doap:Version'>
304
- <span property='doap:revision'>0.4.0</span>
305
- <meta content='earl-report-0.4.0' property='doap:name' />
306
- <meta content='2015-08-10' datatype='xsd:date' property='doap:created' />
301
+ <span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.4.2' typeof='doap:Version'>
302
+ <span property='doap:revision'>0.4.2</span>
303
+ <meta content='earl-report-0.4.2' property='doap:name' />
304
+ <meta content='2016-06-30' datatype='xsd:date' property='doap:created' />
307
305
  </span>
308
306
  an
309
307
  <a href='http://unlicense.org' property='doap:license'>Unlicensed</a>
@@ -103,8 +103,8 @@
103
103
  },
104
104
  "@id": "",
105
105
  "@type": [
106
- "Software",
107
- "doap:Project"
106
+ "doap:Project",
107
+ "Software"
108
108
  ],
109
109
  "assertions": [
110
110
  "/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"
@@ -121,18 +121,18 @@
121
121
  {
122
122
  "@id": "http://example/manifest.ttl#testeval00",
123
123
  "@type": [
124
- "http://www.w3.org/ns/rdftest#TestTurtleEval",
125
124
  "TestCriterion",
126
- "TestCase"
125
+ "TestCase",
126
+ "http://www.w3.org/ns/rdftest#TestTurtleEval"
127
127
  ],
128
128
  "assertions": [
129
129
  {
130
- "@id": "_:b4",
130
+ "@id": "_:b3",
131
131
  "@type": "Assertion",
132
132
  "assertedBy": "http://greggkellogg.net/foaf#me",
133
133
  "mode": "earl:automatic",
134
134
  "result": {
135
- "@id": "_:b3",
135
+ "@id": "_:b4",
136
136
  "@type": "TestResult",
137
137
  "outcome": "earl:passed"
138
138
  },
@@ -146,11 +146,11 @@
146
146
  "title": "subm-test-00"
147
147
  },
148
148
  {
149
- "@id": "_:b0",
149
+ "@id": "_:b2",
150
150
  "@type": [
151
- "http://www.w3.org/ns/rdftest#TestTurtleEval",
152
151
  "TestCriterion",
153
- "TestCase"
152
+ "TestCase",
153
+ "http://www.w3.org/ns/rdftest#TestTurtleEval"
154
154
  ],
155
155
  "assertions": [
156
156
  {
@@ -158,12 +158,12 @@
158
158
  "@type": "Assertion",
159
159
  "assertedBy": null,
160
160
  "result": {
161
- "@id": "_:b2",
161
+ "@id": "_:b0",
162
162
  "@type": "TestResult",
163
163
  "outcome": "earl:untested"
164
164
  },
165
165
  "subject": "http://rubygems.org/gems/rdf-turtle",
166
- "test": "_:b0"
166
+ "test": "_:b2"
167
167
  }
168
168
  ],
169
169
  "rdfs:comment": "@prefix and qnames",
@@ -179,15 +179,15 @@
179
179
  "generatedBy": {
180
180
  "@id": "http://rubygems.org/gems/earl-report",
181
181
  "@type": [
182
- "Software",
183
- "doap:Project"
182
+ "doap:Project",
183
+ "Software"
184
184
  ],
185
185
  "developer": [
186
186
  {
187
187
  "@id": "http://greggkellogg.net/foaf#me",
188
188
  "@type": [
189
- "foaf:Person",
190
- "Assertor"
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.0",
202
+ "@id": "https://github.com/gkellogg/earl-report/tree/0.4.2",
203
203
  "@type": "doap:Version",
204
- "created": "2015-08-10",
205
- "name": "earl-report-0.4.0",
206
- "revision": "0.4.0"
204
+ "created": "2016-06-30",
205
+ "name": "earl-report-0.4.2",
206
+ "revision": "0.4.2"
207
207
  },
208
208
  "shortdesc": "Earl Report summary generator"
209
209
  },
@@ -213,15 +213,15 @@
213
213
  "@id": "http://rubygems.org/gems/rdf-turtle",
214
214
  "@type": [
215
215
  "doap:Project",
216
- "TestSubject",
217
- "Software"
216
+ "Software",
217
+ "TestSubject"
218
218
  ],
219
219
  "developer": [
220
220
  {
221
221
  "@id": "http://greggkellogg.net/foaf#me",
222
222
  "@type": [
223
- "foaf:Person",
224
- "Assertor"
223
+ "Assertor",
224
+ "foaf:Person"
225
225
  ],
226
226
  "foaf:homepage": "http://greggkellogg.net/",
227
227
  "foaf:name": "Gregg Kellogg"
@@ -21,12 +21,12 @@
21
21
  <http://example/manifest.ttl> a mf:Manifest,
22
22
  earl:Report;
23
23
  rdfs:comment "Description for Example Test Cases";
24
- mf:entries (<http://example/manifest.ttl#testeval00> _:g70243612323780);
24
+ mf:entries (<http://example/manifest.ttl#testeval00> _:g70356570213340);
25
25
  mf:name "Example Test Cases" .
26
26
 
27
- <http://example/manifest.ttl#testeval00> a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
28
- earl:TestCriterion,
29
- earl:TestCase;
27
+ <http://example/manifest.ttl#testeval00> a earl:TestCase,
28
+ <http://www.w3.org/ns/rdftest#TestTurtleEval>,
29
+ earl:TestCriterion;
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
- _:g70243612323780 a <http://www.w3.org/ns/rdftest#TestTurtleEval>,
47
- earl:TestCriterion,
48
- earl:TestCase;
46
+ _:g70356570213340 a earl:TestCase,
47
+ <http://www.w3.org/ns/rdftest#TestTurtleEval>,
48
+ earl:TestCriterion;
49
49
  rdfs:comment "@prefix and qnames";
50
50
  mf:action <http://example/test-01.ttl>;
51
51
  mf:name "subm-test-01";
@@ -57,22 +57,22 @@ _:g70243612323780 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 _:g70243612323780
60
+ earl:test _:g70356570213340
61
61
  ] .
62
62
 
63
63
  # Test Subjects
64
64
 
65
- <http://rubygems.org/gems/rdf-turtle> a doap:Project,
66
- earl:TestSubject,
67
- earl:Software;
65
+ <http://rubygems.org/gems/rdf-turtle> a earl:TestSubject,
66
+ earl:Software,
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
72
  doap:programming-language "Ruby" .
73
73
 
74
- <http://greggkellogg.net/foaf#me> a foaf:Person,
75
- earl:Assertor;
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 @@ _:g70243612323780 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.0>;
89
+ doap:release <https://github.com/gkellogg/earl-report/tree/0.4.2>;
90
90
  doap:shortdesc "Earl Report summary generator"@en .
91
91
 
92
- <https://github.com/gkellogg/earl-report/tree/0.4.0> a doap:Version;
93
- doap:created "2015-08-10"^^xsd:date;
94
- doap:name "earl-report-0.4.0";
95
- doap:revision "0.4.0" .
92
+ <https://github.com/gkellogg/earl-report/tree/0.4.2> a doap:Version;
93
+ doap:created "2016-06-30"^^xsd:date;
94
+ doap:name "earl-report-0.4.2";
95
+ doap:revision "0.4.2" .
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.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Kellogg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-04 00:00:00.000000000 Z
11
+ date: 2016-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: linkeddata
@@ -16,48 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.1'
19
+ version: '2.0'
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: '1.1'
26
+ version: '2.0'
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: '1.1'
34
- - - ">="
35
- - !ruby/object:Gem::Version
36
- version: 1.1.7
33
+ version: '2.0'
37
34
  type: :runtime
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
40
37
  requirements:
41
38
  - - "~>"
42
39
  - !ruby/object:Gem::Version
43
- version: '1.1'
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: 1.1.7
40
+ version: '2.0'
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: rdf-turtle
49
43
  requirement: !ruby/object:Gem::Requirement
50
44
  requirements:
51
45
  - - "~>"
52
46
  - !ruby/object:Gem::Version
53
- version: '1.1'
47
+ version: '2.0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
51
  requirements:
58
52
  - - "~>"
59
53
  - !ruby/object:Gem::Version
60
- version: '1.1'
54
+ version: '2.0'
61
55
  - !ruby/object:Gem::Dependency
62
56
  name: redcarpet
63
57
  requirement: !ruby/object:Gem::Requirement
@@ -93,9 +87,6 @@ dependencies:
93
87
  - - "~>"
94
88
  - !ruby/object:Gem::Version
95
89
  version: '3.0'
96
- - - "<"
97
- - !ruby/object:Gem::Version
98
- version: '3.3'
99
90
  type: :development
100
91
  prerelease: false
101
92
  version_requirements: !ruby/object:Gem::Requirement
@@ -103,9 +94,6 @@ dependencies:
103
94
  - - "~>"
104
95
  - !ruby/object:Gem::Version
105
96
  version: '3.0'
106
- - - "<"
107
- - !ruby/object:Gem::Version
108
- version: '3.3'
109
97
  - !ruby/object:Gem::Dependency
110
98
  name: rspec-its
111
99
  requirement: !ruby/object:Gem::Requirement
@@ -126,14 +114,14 @@ dependencies:
126
114
  requirements:
127
115
  - - "~>"
128
116
  - !ruby/object:Gem::Version
129
- version: '0.4'
117
+ version: '0.6'
130
118
  type: :development
131
119
  prerelease: false
132
120
  version_requirements: !ruby/object:Gem::Requirement
133
121
  requirements:
134
122
  - - "~>"
135
123
  - !ruby/object:Gem::Version
136
- version: '0.4'
124
+ version: '0.6'
137
125
  - !ruby/object:Gem::Dependency
138
126
  name: yard
139
127
  requirement: !ruby/object:Gem::Requirement
@@ -154,14 +142,14 @@ dependencies:
154
142
  requirements:
155
143
  - - "~>"
156
144
  - !ruby/object:Gem::Version
157
- version: '10.3'
145
+ version: '11.0'
158
146
  type: :development
159
147
  prerelease: false
160
148
  version_requirements: !ruby/object:Gem::Requirement
161
149
  requirements:
162
150
  - - "~>"
163
151
  - !ruby/object:Gem::Version
164
- version: '10.3'
152
+ version: '11.0'
165
153
  description: EarlReport generates HTML+RDFa rollups of multiple EARL reports.
166
154
  email: gregg@greggkellogg.net
167
155
  executables:
@@ -190,7 +178,7 @@ files:
190
178
  - spec/test-files/test-00.ttl
191
179
  homepage: http://github.com/gkellogg/earl-report
192
180
  licenses:
193
- - Public Domain
181
+ - Unlicense
194
182
  metadata: {}
195
183
  post_install_message:
196
184
  rdoc_options: []
@@ -200,7 +188,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
200
188
  requirements:
201
189
  - - ">="
202
190
  - !ruby/object:Gem::Version
203
- version: 1.9.3
191
+ version: '2.0'
204
192
  required_rubygems_version: !ruby/object:Gem::Requirement
205
193
  requirements:
206
194
  - - ">="
@@ -208,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
196
  version: '0'
209
197
  requirements: []
210
198
  rubyforge_project:
211
- rubygems_version: 2.4.7
199
+ rubygems_version: 2.5.1
212
200
  signing_key:
213
201
  specification_version: 4
214
202
  summary: Earl Report summary generator