Skip to content

Commit 5536f20

Browse files
committed
Update Gemfile.lock with latest json-ld gem.
Fix sealed examples to pass.
1 parent 9244f6e commit 5536f20

File tree

2 files changed

+33
-34
lines changed

2 files changed

+33
-34
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: git://github.com/ruby-rdf/json-ld.git
3-
revision: afe7b3b10547b552676d1379a2be4bc34cf83d02
3+
revision: 6bb0c2d269e8cf80152d519ee5fd16696812b1f2
44
branch: develop
55
specs:
66
json-ld (3.0.2)
@@ -12,7 +12,7 @@ GIT
1212
GEM
1313
remote: https://rubygems.org/
1414
specs:
15-
addressable (2.5.2)
15+
addressable (2.6.0)
1616
public_suffix (>= 2.0.2, < 4.0)
1717
bcp47 (0.3.3)
1818
i18n
@@ -31,7 +31,7 @@ GEM
3131
hamster (3.0.0)
3232
concurrent-ruby (~> 1.0)
3333
htmlentities (4.3.4)
34-
i18n (1.5.1)
34+
i18n (1.5.3)
3535
concurrent-ruby (~> 1.0)
3636
json-ld-preloaded (3.0.2)
3737
json-ld (~> 3.0)
@@ -73,14 +73,14 @@ GEM
7373
multi_json (1.13.1)
7474
net-http-persistent (3.0.0)
7575
connection_pool (~> 2.2)
76-
nokogiri (1.10.0)
76+
nokogiri (1.10.1)
7777
mini_portile2 (~> 2.4.0)
7878
nokogumbo (1.5.0)
7979
nokogiri
8080
public_suffix (3.0.3)
8181
rack (2.0.6)
8282
rake (12.3.2)
83-
rdf (3.0.9)
83+
rdf (3.0.10)
8484
hamster (~> 3.0)
8585
link_header (~> 0.0, >= 0.0.8)
8686
rdf-aggregate-repo (2.2.1)
@@ -126,7 +126,7 @@ GEM
126126
rdf-turtle (~> 3.0, >= 3.0.3)
127127
rdf-trix (2.2.1)
128128
rdf (>= 2.2, < 4.0)
129-
rdf-turtle (3.0.3)
129+
rdf-turtle (3.0.5)
130130
ebnf (~> 1.1)
131131
rdf (~> 3.0)
132132
rdf-vocab (3.0.4)

index.html

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3160,21 +3160,19 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
31603160
</pre>
31613161
<pre class="expanded nohighlight"
31623162
data-transform="updateExample"
3163-
data-result-for="A sealed @context prevents its term definitions to be overridden">
3163+
data-result-for="A sealed @context prevents its term definitions to be overridden-original">
31643164
<!--
31653165
[{
31663166
"@type": ["http://schema.org/Person"],
3167-
"http://schema.org/knows": [
3168-
{
3169-
"http://schema.org/name": [{"@value": "Gregg Kellogg"}],
3170-
}
3171-
],
3172-
"http://schema.org/name": [{"@value": "Manu Sporny"}]
3167+
"http://schema.org/name": [{"@value": "Manu Sporny"}],
3168+
"http://schema.org/knows": [{
3169+
"http://schema.org/name": [{"@value": "Gregg Kellogg"}]
3170+
}]
31733171
}]
31743172
-->
31753173
</pre>
31763174
<table class="statements"
3177-
data-result-for="A sealed @context prevents its term definitions to be overridden"
3175+
data-result-for="A sealed @context prevents its term definitions to be overridden-expanded"
31783176
data-to-rdf>
31793177
<thead><tr><th>Subject</th><th>Property</th><th>Value</th></tr></thead>
31803178
<tbody>
@@ -3186,7 +3184,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
31863184
</table>
31873185
<pre class="turtle"
31883186
data-content-type="text/turtle"
3189-
data-result-for="A sealed @context prevents its term definitions to be overridden"
3187+
data-result-for="A sealed @context prevents its term definitions to be overridden-expanded"
31903188
data-transform="updateExample"
31913189
data-to-rdf>
31923190
<!--
@@ -3196,7 +3194,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
31963194
a schema:Person;
31973195
schema:name "Manu Sporny";
31983196
schema:knows [
3199-
shema:name "Gregg Kellogg"
3197+
schema:name "Gregg Kellogg"
32003198
]
32013199
] .
32023200
-->
@@ -3227,9 +3225,10 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
32273225
"member": "http://schema.org/member",
32283226
"Person": {
32293227
"@id": "http://schema.org/Person",
3230-
"@context": {
3228+
"@context": [null, {
3229+
"Person": "http://schema.org/Person",
32313230
"name": "http://schema.org/familyName"
3232-
}
3231+
}]
32333232
}
32343233
}
32353234
],
@@ -3243,21 +3242,21 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
32433242
</pre>
32443243
<pre class="expanded nohighlight"
32453244
data-transform="updateExample"
3246-
data-result-for="A sealed @context can override its own terms">
3245+
data-result-for="A sealed @context can override its own terms-original">
32473246
<!--
32483247
[{
3249-
"@type": ["http://schema.org/Person"],
32503248
"http://schema.org/name": [{"@value": "Digital Bazaar"}],
32513249
"http://schema.org/member": [
32523250
{
3253-
"http://schema.org/familyame": [{"@value": "Sporny"}],
3251+
"@type": ["http://schema.org/Person"],
3252+
"http://schema.org/familyName": [{"@value": "Sporny"}]
32543253
}
3255-
],
3254+
]
32563255
}]
32573256
-->
32583257
</pre>
32593258
<table class="statements"
3260-
data-result-for="A sealed @context can override its own terms"
3259+
data-result-for="A sealed @context can override its own terms-expanded"
32613260
data-to-rdf>
32623261
<thead><tr><th>Subject</th><th>Property</th><th>Value</th></tr></thead>
32633262
<tbody>
@@ -3269,14 +3268,14 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
32693268
</table>
32703269
<pre class="turtle"
32713270
data-content-type="text/turtle"
3272-
data-result-for="A sealed @context can override its own terms"
3271+
data-result-for="A sealed @context can override its own terms-expanded"
32733272
data-transform="updateExample"
32743273
data-to-rdf>
32753274
<!--
32763275
@prefix schema: <http://schema.org/> .
32773276
32783277
[
3279-
shema:name "Digital Bazaar";
3278+
schema:name "Digital Bazaar";
32803279
schema:member [
32813280
a schema:Person;
32823281
schema:familyName "Sporny"
@@ -3325,29 +3324,29 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
33253324
"name": "Digital Bazaar",
33263325
"employee" : {
33273326
"@context": {
3328-
"name": "this_attempt_to_override_name_will_fail"
3327+
"name": "http://example.org/this_attempt_to_override_name_will_fail"
33293328
},
33303329
"name" : "Dave Longley"
33313330
},
33323331
"member": {
3333-
"@context": {
3332+
"@context": [null, {
33343333
"name": "http://xmlns.com/foaf/0.1/name"
3335-
},
3334+
}],
33363335
"name": "Manu Sporny"
33373336
}
33383337
}
33393338
-->
33403339
</pre>
33413340
<pre class="expanded nohighlight"
33423341
data-transform="updateExample"
3343-
data-result-for="Sealing does not extend beyond other terms">
3342+
data-result-for="Sealing does not extend beyond other terms-original">
33443343
<!--
33453344
[{
33463345
"@type": ["http://schema.org/Organization"],
33473346
"http://schema.org/name": [{"@value": "Digital Bazaar"}],
33483347
"http://schema.org/employee": [
33493348
{
3350-
"http://schema.org/name": [{"@value": "Dave Longly"}]
3349+
"http://schema.org/name": [{"@value": "Dave Longley"}]
33513350
}
33523351
],
33533352
"http://xmlns.com/foaf/0.1/member": [
@@ -3359,7 +3358,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
33593358
-->
33603359
</pre>
33613360
<table class="statements"
3362-
data-result-for="Sealing does not extend beyond other terms"
3361+
data-result-for="Sealing does not extend beyond other terms-expanded"
33633362
data-to-rdf>
33643363
<thead><tr><th>Subject</th><th>Property</th><th>Value</th></tr></thead>
33653364
<tbody>
@@ -3368,12 +3367,12 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
33683367
<tr><td>_:b0</td><td>schema:employee</td><td>_:b1</td></tr>
33693368
<tr><td>_:b0</td><td>foaf:member</td><td>_:b2</td></tr>
33703369
<tr><td>_:b1</td><td>schema:name</td><td>Dave Longley</td></tr>
3371-
<tr><td>_:b1</td><td>foaf:name</td><td>Manu Sporny</td></tr>
3370+
<tr><td>_:b2</td><td>foaf:name</td><td>Manu Sporny</td></tr>
33723371
</tbody>
33733372
</table>
33743373
<pre class="turtle"
33753374
data-content-type="text/turtle"
3376-
data-result-for="Sealing does not extend beyond other terms"
3375+
data-result-for="Sealing does not extend beyond other terms-expanded"
33773376
data-transform="updateExample"
33783377
data-to-rdf>
33793378
<!--
@@ -3382,7 +3381,7 @@ <h3>Using the Document Base for the Default Vocabulary</h3>
33823381
33833382
[
33843383
a schema:Organization;
3385-
shema:name "Digital Bazaar";
3384+
schema:name "Digital Bazaar";
33863385
schema:employee [
33873386
schema:name "Dave Longley"
33883387
];

0 commit comments

Comments
 (0)