earl-report 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/earl_report.rb +16 -12
- data/spec/earl_report_spec.rb +2 -2
- data/spec/test-files/doap.ttl +1 -1
- data/spec/test-files/report-no-foaf.ttl +1 -1
- data/spec/test-files/results.html +10 -10
- data/spec/test-files/results.jsonld +1 -1
- data/spec/test-files/results.ttl +7 -7
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a06fd09b08e1670e2ad0bb4b341bfdd0c8d7584d
|
4
|
+
data.tar.gz: 77577fb42d3c603793d87ca5be79d20072a0aa16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bd9749bc7571a6bf5f4f6815ab9c64469246f8970802fbc25866a32dc225e7488e443cf9a131e0e94fa336d10a171757d78cf9e9c943a2e071845374737f894
|
7
|
+
data.tar.gz: fc47dab9ef95602697aeac961ba20d095456027be703c3189cb74fe5058d42ec8060f4e86bf194b991cfadf8bd941ad77c5ebf5a8e836e8cfd3fc526d3431304
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
data/lib/earl_report.rb
CHANGED
@@ -495,7 +495,7 @@ class EarlReport
|
|
495
495
|
man_defs = json_hash['entries'].map {|defn| as_resource(defn['@id'])}.join("\n ")
|
496
496
|
io.puts %{
|
497
497
|
#{as_resource(json_hash['@id'])} a #{Array(json_hash['@type']).join(', ')};
|
498
|
-
doap:name
|
498
|
+
doap:name #{quoted(json_hash['name'])};
|
499
499
|
dc:bibliographicCitation "#{json_hash['bibRef']}";
|
500
500
|
earl:generatedBy #{as_resource json_hash['generatedBy']['@id']};
|
501
501
|
earl:assertions
|
@@ -525,9 +525,9 @@ class EarlReport
|
|
525
525
|
io.puts %(\n# Manifests)
|
526
526
|
json_hash['entries'].each do |man|
|
527
527
|
io.puts %(#{as_resource(man['@id'])} a earl:Report, mf:Manifest;)
|
528
|
-
io.puts %( dc:title
|
529
|
-
io.puts %( mf:name
|
530
|
-
io.puts %( rdfs:comment
|
528
|
+
io.puts %( dc:title #{quoted(man['title'])};) if man['title']
|
529
|
+
io.puts %( mf:name #{quoted(man['title'])};) if man['title']
|
530
|
+
io.puts %( rdfs:comment #{quoted(man['description'])};) if man['description']
|
531
531
|
|
532
532
|
# Test Cases
|
533
533
|
test_defs = man['entries'].map {|defn| as_resource(defn['@id'])}.join("\n ")
|
@@ -557,9 +557,9 @@ class EarlReport
|
|
557
557
|
# @return [String]
|
558
558
|
def test_subject_turtle(desc)
|
559
559
|
res = %(<#{desc['@id']}> a #{desc['@type'].join(', ')};\n)
|
560
|
-
res += %( doap:name
|
561
|
-
res += %( doap:description
|
562
|
-
res += %( doap:programming-language
|
560
|
+
res += %( doap:name #{quoted(desc['name'])};\n)
|
561
|
+
res += %( doap:description #{quoted(desc['doapDesc'])}@en;\n) if desc['doapDesc']
|
562
|
+
res += %( doap:programming-language #{quoted(desc['language'])};\n) if desc['language']
|
563
563
|
res += %( .\n\n)
|
564
564
|
|
565
565
|
[desc['developer']].flatten.compact.each do |developer|
|
@@ -567,12 +567,12 @@ class EarlReport
|
|
567
567
|
res += %(<#{desc['@id']}> doap:developer <#{developer['@id']}> .\n\n)
|
568
568
|
res += %(<#{developer['@id']}> a #{Array(developer['@type']).join(', ')};\n)
|
569
569
|
res += %( foaf:homepage <#{developer['foaf:homepage']}>;\n) if developer['foaf:homepage']
|
570
|
-
res += %( foaf:name
|
570
|
+
res += %( foaf:name #{quoted(developer['foaf:name'])} .\n\n)
|
571
571
|
else
|
572
572
|
res += %(<#{desc['@id']}> doap:developer\n)
|
573
573
|
res += %( [ a #{developer['@type'] || "foaf:Person"};\n)
|
574
574
|
res += %( foaf:homepage <#{developer['foaf:homepage']}>;\n) if developer['foaf:homepage']
|
575
|
-
res += %( foaf:name
|
575
|
+
res += %( foaf:name #{quoted(developer['foaf:name'])} ] .\n\n)
|
576
576
|
end
|
577
577
|
end
|
578
578
|
res + "\n"
|
@@ -587,8 +587,8 @@ class EarlReport
|
|
587
587
|
t.include?("://") ? "<#{t}>" : t
|
588
588
|
end
|
589
589
|
res = %{#{as_resource desc['@id']} a #{types.join(', ')};\n}
|
590
|
-
res += %{ dc:title
|
591
|
-
res += %{ dc:description
|
590
|
+
res += %{ dc:title #{quoted(desc['title'])};\n}
|
591
|
+
res += %{ dc:description #{quoted(desc['description'])}@en;\n} if desc['description']
|
592
592
|
res += %{ mf:result #{as_resource desc['testResult']};\n} if desc['testResult']
|
593
593
|
res += %{ mf:action #{as_resource desc['testAction']};\n}
|
594
594
|
res += %{ earl:assertions (\n}
|
@@ -610,11 +610,15 @@ class EarlReport
|
|
610
610
|
res += %( earl:mode #{desc['mode']};\n) if desc['mode']
|
611
611
|
res += %( earl:result [ a earl:TestResult; earl:outcome #{desc['result']['outcome']} ]]\n)
|
612
612
|
end
|
613
|
-
|
613
|
+
|
614
614
|
def as_resource(resource)
|
615
615
|
resource[0,2] == '_:' ? resource : "<#{resource}>"
|
616
616
|
end
|
617
617
|
|
618
|
+
def quoted(string)
|
619
|
+
(@turtle_writer ||= RDF::Turtle::Writer.new).send(:quoted, string)
|
620
|
+
end
|
621
|
+
|
618
622
|
def warn(message)
|
619
623
|
$stderr.puts message
|
620
624
|
end
|
data/spec/earl_report_spec.rb
CHANGED
@@ -335,7 +335,7 @@ describe EarlReport do
|
|
335
335
|
specify {should match(/<#{desc['@id']}> a/)}
|
336
336
|
specify {should match(/ a #{desc['@type'].join(', ')}\s*[;\.]$/)}
|
337
337
|
specify {should match(/ doap:name "#{desc['name']}"\s*[;\.]$/)}
|
338
|
-
specify {should match(/ doap:description "
|
338
|
+
specify {should match(/ doap:description "#{desc['doapDesc']}"@en\s*[;\.]$/)}
|
339
339
|
specify {should match(/ doap:programming-language "#{desc['language']}"\s*[;\.]$/)}
|
340
340
|
specify {should match(/ doap:developer <#{desc['developer']['@id']}>/)}
|
341
341
|
|
@@ -373,7 +373,7 @@ describe EarlReport do
|
|
373
373
|
specify {should match(/<#{tc['@id']}> a/)}
|
374
374
|
specify {should match(/ a #{tc['@type'].join(', ')}\s*[;\.]$/)}
|
375
375
|
specify {should match(/ dc:title "#{tc['title']}"\s*[;\.]$/)}
|
376
|
-
specify {should match(/ dc:description "
|
376
|
+
specify {should match(/ dc:description "#{tc['description']}"@en\s*[;\.]$/)}
|
377
377
|
specify {should match(/ mf:action <#{tc['testAction']}>\s*[;\.]$/)}
|
378
378
|
specify {should match(/ mf:result <#{tc['testResult']}>\s*[;\.]$/)}
|
379
379
|
specify {should match(/ earl:assertions \(\s*\[ a earl:Assertion/m)}
|
data/spec/test-files/doap.ttl
CHANGED
@@ -29,5 +29,5 @@
|
|
29
29
|
dc:title "RDF::Turtle" ;
|
30
30
|
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
31
31
|
dc:date "2011-08-29"^^xsd:date;
|
32
|
-
dc:creator <http://greggkellogg.net/foaf#me
|
32
|
+
dc:creator <http://greggkellogg.net/foaf#me>;
|
33
33
|
dc:isPartOf <http://rubygems.org/gems/rdf> .
|
@@ -29,7 +29,7 @@
|
|
29
29
|
dc:title "RDF::Turtle" ;
|
30
30
|
dc:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en ;
|
31
31
|
dc:date "2011-08-29"^^xsd:date;
|
32
|
-
dc:creator <http://greggkellogg.net/foaf#me
|
32
|
+
dc:creator <http://greggkellogg.net/foaf#me>;
|
33
33
|
dc:isPartOf <http://rubygems.org/gems/rdf> .
|
34
34
|
|
35
35
|
<http://greggkellogg.net/foaf#me> a earl:Assertor .
|
@@ -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: "2013/12/
|
30
|
+
publishDate: "2013/12/26",
|
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
|
@@ -173,12 +173,12 @@
|
|
173
173
|
</span>
|
174
174
|
</td>
|
175
175
|
</tr>
|
176
|
-
<tr inlist='inlist' rel='mf:entries' resource='_:
|
176
|
+
<tr inlist='inlist' rel='mf:entries' resource='_:g70132667466700' typeof='earl:TestCriterion earl:TestCase http://www.w3.org/ns/rdftest#TestTurtleEval'>
|
177
177
|
<td>
|
178
|
-
<a href='#
|
178
|
+
<a href='#test_d2eb37c7ab35c2a5e0143af86a65aab7'>subm-test-01</a>
|
179
179
|
</td>
|
180
180
|
<td class='UNTESTED' inlist='inlist' property='earl:assertions' typeof='earl:Assertion'>
|
181
|
-
<link href='_:
|
181
|
+
<link href='_:g70132667466700' property='earl:test' />
|
182
182
|
<link href='http://rubygems.org/gems/rdf-turtle' property='earl:subject' />
|
183
183
|
<link href='earl:notAvailable' property='earl:mode' />
|
184
184
|
<span property='earl:result' typeof='earl:TestResult'>
|
@@ -284,11 +284,11 @@
|
|
284
284
|
<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>
|
285
285
|
<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>
|
286
286
|
</dd>
|
287
|
-
<dt id='
|
287
|
+
<dt id='test_d2eb37c7ab35c2a5e0143af86a65aab7' resource='_:g70132667466700'>
|
288
288
|
Test
|
289
289
|
<span property='dc:title mf:name'>subm-test-01</span>
|
290
290
|
</dt>
|
291
|
-
<dd resource='_:
|
291
|
+
<dd resource='_:g70132667466700'>
|
292
292
|
<p lang='en' property='dc:description'>@prefix and qnames</p>
|
293
293
|
<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>
|
294
294
|
<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>
|
@@ -306,10 +306,10 @@
|
|
306
306
|
<meta content='Earl Report summary generator' lang='en' property='doap:shortdesc' />
|
307
307
|
<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' lang='en' property='doap:description' />
|
308
308
|
version
|
309
|
-
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.
|
310
|
-
<span property='doap:revision'>0.
|
311
|
-
<meta content='earl-report-0.
|
312
|
-
<meta content='2013-
|
309
|
+
<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.3.0' typeof='doap:Version'>
|
310
|
+
<span property='doap:revision'>0.3.0</span>
|
311
|
+
<meta content='earl-report-0.3.0' property='doap:name' />
|
312
|
+
<meta content='2013-12-06' datatype='xsd:date' property='doap:created' />
|
313
313
|
</span>
|
314
314
|
an
|
315
315
|
<a href='http://unlicense.org' property='doap:license'>Unlicensed</a>
|
@@ -1 +1 @@
|
|
1
|
-
{"@context":{"@vocab":"http://www.w3.org/ns/earl#","foaf:homepage":{"@type":"@id"},"dc":"http://purl.org/dc/terms/","doap":"http://usefulinc.com/ns/doap#","earl":"http://www.w3.org/ns/earl#","mf":"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#","foaf":"http://xmlns.com/foaf/0.1/","rdfs":"http://www.w3.org/2000/01/rdf-schema#","assertedBy":{"@type":"@id"},"assertions":{"@type":"@id","@container":"@list"},"bibRef":{"@id":"dc:bibliographicCitation"},"created":{"@id":"doap:created","@type":"xsd:date"},"description":{"@id":"dc:description","@language":"en"},"developer":{"@id":"doap:developer","@type":"@id","@container":"@set"},"doapDesc":{"@id":"doap:description","@language":"en"},"generatedBy":{"@type":"@id"},"homepage":{"@id":"doap:homepage","@type":"@id"},"label":{"@id":"rdfs:label","@language":"en"},"language":{"@id":"doap:programming-language"},"license":{"@id":"doap:license","@type":"@id"},"mode":{"@type":"@id"},"name":{"@id":"doap:name"},"outcome":{"@type":"@id"},"release":{"@id":"doap:release","@type":"@id"},"shortdesc":{"@id":"doap:shortdesc","@language":"en"},"subject":{"@type":"@id"},"test":{"@type":"@id"},"testAction":{"@id":"mf:action","@type":"@id"},"testResult":{"@id":"mf:result","@type":"@id"},"entries":{"@id":"mf:entries","@type":"@id","@container":"@list"},"testSubjects":{"@type":"@id","@container":"@list"},"title":{"@id":"dc:title"},"xsd":{"@id":"http://www.w3.org/2001/XMLSchema#"}},"@id":"","@type":["earl:Software","doap:Project"],"name":"Turtle Test Results","bibRef":"[[TURTLE]]","generatedBy":{"@id":"http://rubygems.org/gems/earl-report","@type":"doap:Project","name":"earl-report","shortdesc":"Earl Report summary generator","doapDesc":"EarlReport generates HTML+RDFa rollups of multiple EARL reports","homepage":"https://github.com/gkellogg/earl-report","language":"Ruby","license":"http://unlicense.org","release":{"@id":"https://github.com/gkellogg/earl-report/tree/0.
|
1
|
+
{"@context":{"@vocab":"http://www.w3.org/ns/earl#","foaf:homepage":{"@type":"@id"},"dc":"http://purl.org/dc/terms/","doap":"http://usefulinc.com/ns/doap#","earl":"http://www.w3.org/ns/earl#","mf":"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#","foaf":"http://xmlns.com/foaf/0.1/","rdfs":"http://www.w3.org/2000/01/rdf-schema#","assertedBy":{"@type":"@id"},"assertions":{"@type":"@id","@container":"@list"},"bibRef":{"@id":"dc:bibliographicCitation"},"created":{"@id":"doap:created","@type":"xsd:date"},"description":{"@id":"dc:description","@language":"en"},"developer":{"@id":"doap:developer","@type":"@id","@container":"@set"},"doapDesc":{"@id":"doap:description","@language":"en"},"generatedBy":{"@type":"@id"},"homepage":{"@id":"doap:homepage","@type":"@id"},"label":{"@id":"rdfs:label","@language":"en"},"language":{"@id":"doap:programming-language"},"license":{"@id":"doap:license","@type":"@id"},"mode":{"@type":"@id"},"name":{"@id":"doap:name"},"outcome":{"@type":"@id"},"release":{"@id":"doap:release","@type":"@id"},"shortdesc":{"@id":"doap:shortdesc","@language":"en"},"subject":{"@type":"@id"},"test":{"@type":"@id"},"testAction":{"@id":"mf:action","@type":"@id"},"testResult":{"@id":"mf:result","@type":"@id"},"entries":{"@id":"mf:entries","@type":"@id","@container":"@list"},"testSubjects":{"@type":"@id","@container":"@list"},"title":{"@id":"dc:title"},"xsd":{"@id":"http://www.w3.org/2001/XMLSchema#"}},"@id":"","@type":["earl:Software","doap:Project"],"name":"Turtle Test Results","bibRef":"[[TURTLE]]","generatedBy":{"@id":"http://rubygems.org/gems/earl-report","@type":"doap:Project","name":"earl-report","shortdesc":"Earl Report summary generator","doapDesc":"EarlReport generates HTML+RDFa rollups of multiple EARL reports","homepage":"https://github.com/gkellogg/earl-report","language":"Ruby","license":"http://unlicense.org","release":{"@id":"https://github.com/gkellogg/earl-report/tree/0.3.0","@type":"doap:Version","name":"earl-report-0.3.0","created":"2013-12-06","revision":"0.3.0"},"developer":{"@type":"foaf:Person","@id":"http://greggkellogg.net/foaf#me","foaf:name":"Gregg Kellogg","foaf:homepage":"http://greggkellogg.net/"}},"assertions":["/Users/gregg/Projects/earl-report/spec/test-files/report-complete.ttl"],"testSubjects":[{"@id":"http://rubygems.org/gems/rdf-turtle","@type":["earl:TestSubject","doap:Project"],"name":"RDF::Turtle","developer":[{"@type":"foaf:Person","@id":"http://greggkellogg.net/foaf#me","foaf:name":"Gregg Kellogg","foaf:homepage":"http://greggkellogg.net/"}],"doapDesc":"RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite.","homepage":"http://ruby-rdf.github.com/rdf-turtle","language":"Ruby"}],"entries":[{"@id":"http://example/manifest.ttl","@type":["earl:Report","mf:Manifest"],"entries":[{"@id":"http://example/manifest.ttl#testeval00","@type":["earl:TestCriterion","earl:TestCase","http://www.w3.org/ns/rdftest#TestTurtleEval"],"title":"subm-test-00","testAction":"http://example/test-00.ttl","assertions":[{"@type":"earl:Assertion","test":"http://example/manifest.ttl#testeval00","subject":"http://rubygems.org/gems/rdf-turtle","mode":"earl:automatic","result":{"@type":"earl:TestResult","outcome":"earl:passed"},"assertedBy":"http://greggkellogg.net/foaf#me"}],"description":"Blank subject","testResult":"http://example/test-00.out"},{"@id":"_:g70132633032380","@type":["earl:TestCriterion","earl:TestCase","http://www.w3.org/ns/rdftest#TestTurtleEval"],"title":"subm-test-01","testAction":"http://example/test-01.ttl","assertions":[{"@type":"earl:Assertion","test":"_:g70132633032380","subject":"http://rubygems.org/gems/rdf-turtle","mode":"earl:notAvailable","result":{"@type":"earl:TestResult","outcome":"earl:untested"}}],"description":"@prefix and qnames","testResult":"http://example/test-01.out"}],"title":"Example Test Cases","description":"Description for Example Test Cases"}]}
|
data/spec/test-files/results.ttl
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
doap:homepage <https://github.com/gkellogg/earl-report>;
|
30
30
|
doap:programming-language "Ruby";
|
31
31
|
doap:license <http://unlicense.org>;
|
32
|
-
doap:release <https://github.com/gkellogg/earl-report/tree/0.
|
32
|
+
doap:release <https://github.com/gkellogg/earl-report/tree/0.3.0>;
|
33
33
|
doap:developer <http://greggkellogg.net/foaf#me> .
|
34
34
|
|
35
35
|
|
@@ -41,14 +41,14 @@
|
|
41
41
|
rdfs:comment "Description for Example Test Cases";
|
42
42
|
mf:entries (
|
43
43
|
<http://example/manifest.ttl#testeval00>
|
44
|
-
_:
|
44
|
+
_:g70132611890140) .
|
45
45
|
|
46
46
|
#
|
47
47
|
# Subject Definitions
|
48
48
|
#
|
49
49
|
<http://rubygems.org/gems/rdf-turtle> a earl:TestSubject, doap:Project;
|
50
50
|
doap:name "RDF::Turtle";
|
51
|
-
doap:description "
|
51
|
+
doap:description "RDF::Turtle is an Turtle reader/writer for the RDF.rb library suite."@en;
|
52
52
|
doap:programming-language "Ruby";
|
53
53
|
.
|
54
54
|
|
@@ -64,7 +64,7 @@
|
|
64
64
|
#
|
65
65
|
<http://example/manifest.ttl#testeval00> a earl:TestCriterion, earl:TestCase, <http://www.w3.org/ns/rdftest#TestTurtleEval>;
|
66
66
|
dc:title "subm-test-00";
|
67
|
-
dc:description "
|
67
|
+
dc:description "Blank subject"@en;
|
68
68
|
mf:result <http://example/test-00.out>;
|
69
69
|
mf:action <http://example/test-00.ttl>;
|
70
70
|
earl:assertions (
|
@@ -76,14 +76,14 @@
|
|
76
76
|
earl:result [ a earl:TestResult; earl:outcome earl:passed ]]
|
77
77
|
) .
|
78
78
|
|
79
|
-
_:
|
79
|
+
_:g70132611890140 a earl:TestCriterion, earl:TestCase, <http://www.w3.org/ns/rdftest#TestTurtleEval>;
|
80
80
|
dc:title "subm-test-01";
|
81
|
-
dc:description "
|
81
|
+
dc:description "@prefix and qnames"@en;
|
82
82
|
mf:result <http://example/test-01.out>;
|
83
83
|
mf:action <http://example/test-01.ttl>;
|
84
84
|
earl:assertions (
|
85
85
|
[ a earl:Assertion;
|
86
|
-
earl:test _:
|
86
|
+
earl:test _:g70132611890140;
|
87
87
|
earl:subject <http://rubygems.org/gems/rdf-turtle>;
|
88
88
|
earl:mode earl:notAvailable;
|
89
89
|
earl:result [ a earl:TestResult; earl:outcome earl:untested ]]
|
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.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gregg Kellogg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-12-
|
11
|
+
date: 2013-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: linkeddata
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rdf-turtle
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.1.2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.1.2
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: redcarpet
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|