Skip to content

Commit deaffb6

Browse files
committed
Update links.
1 parent 15a67a1 commit deaffb6

19 files changed

+7450
-3911
lines changed

AUTHORS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* Gregg Kellogg <gregg@kellogg-assoc.com>
1+
* Gregg Kellogg <gregg@greggkellogg.net>

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee
66

77
This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
88

9-
* create or respond to an issue on the [Github Repository](http://github.com/ruby-rdf/json-ld/issues)
9+
* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/json-ld/issues)
1010
* Fork and clone the repo:
1111
`git clone git@github.com:your-username/json-ld.git`
1212
* Install bundle:
@@ -30,7 +30,7 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo
3030
of thumb, additions larger than about 15 lines of code), we need an
3131
explicit [public domain dedication][PDD] on record from you.
3232

33-
[YARD]: http://yardoc.org/
34-
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
35-
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
33+
[YARD]: https://yardoc.org/
34+
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
35+
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
3636
[pr]: https://github.com/ruby-rdf/json-ld/compare/

README.md

+34-45
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[JSON-LD][] reader/writer for [RDF.rb][RDF.rb] and fully conforming [JSON-LD API][] processor. Additionally this gem implements [JSON-LD Framing][].
44

5-
[![Gem Version](https://badge.fury.io/rb/json-ld.png)](http://badge.fury.io/rb/json-ld)
6-
[![Build Status](https://secure.travis-ci.org/ruby-rdf/json-ld.png?branch=master)](http://travis-ci.org/ruby-rdf/json-ld)
5+
[![Gem Version](https://badge.fury.io/rb/json-ld.png)](https://badge.fury.io/rb/json-ld)
6+
[![Build Status](https://secure.travis-ci.org/ruby-rdf/json-ld.png?branch=master)](https://travis-ci.org/ruby-rdf/json-ld)
77
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/json-ld/badge.svg)](https://coveralls.io/r/ruby-rdf/json-ld)
88

99
## Features
@@ -49,16 +49,16 @@ require 'json/ld'
4949

5050
[{
5151
"http://xmlns.com/foaf/0.1/name": [{"@value"=>"Manu Sporny"}],
52-
"http://xmlns.com/foaf/0.1/homepage": [{"@value"=>"http://manu.sporny.org/"}],
53-
"http://xmlns.com/foaf/0.1/avatar": [{"@value": "http://twitter.com/account/profile_image/manusporny"}]
52+
"http://xmlns.com/foaf/0.1/homepage": [{"@value"=>"https://manu.sporny.org/"}],
53+
"http://xmlns.com/foaf/0.1/avatar": [{"@value": "https://twitter.com/account/profile_image/manusporny"}]
5454
}]
5555
```
5656
### Compact a Document
5757
```ruby
5858
input = JSON.parse %([{
5959
"http://xmlns.com/foaf/0.1/name": ["Manu Sporny"],
60-
"http://xmlns.com/foaf/0.1/homepage": [{"@id": "http://manu.sporny.org/"}],
61-
"http://xmlns.com/foaf/0.1/avatar": [{"@id": "http://twitter.com/account/profile_image/manusporny"}]
60+
"http://xmlns.com/foaf/0.1/homepage": [{"@id": "https://manu.sporny.org/"}],
61+
"http://xmlns.com/foaf/0.1/avatar": [{"@id": "https://twitter.com/account/profile_image/manusporny"}]
6262
}])
6363

6464
context = JSON.parse(%({
@@ -76,8 +76,8 @@ require 'json/ld'
7676
"homepage": {"@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id"},
7777
"avatar": {"@id": "http://xmlns.com/foaf/0.1/avatar", "@type": "@id"}
7878
},
79-
"avatar": "http://twitter.com/account/profile_image/manusporny",
80-
"homepage": "http://manu.sporny.org/",
79+
"avatar": "https://twitter.com/account/profile_image/manusporny",
80+
"homepage": "https://manu.sporny.org/",
8181
"name": "Manu Sporny"
8282
}
8383
```
@@ -168,7 +168,7 @@ require 'json/ld'
168168
```ruby
169169
input = JSON.parse %({
170170
"@context": {
171-
"": "http://manu.sporny.org/",
171+
"": "https://manu.sporny.org/",
172172
"foaf": "http://xmlns.com/foaf/0.1/"
173173
},
174174
"@id": "http://example.org/people#joebob",
@@ -193,15 +193,15 @@ require 'json/ld'
193193
input = RDF::Graph.new << RDF::Turtle::Reader.new(%(
194194
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
195195
196-
<http://manu.sporny.org/#me> a foaf:Person;
196+
<https://manu.sporny.org/#me> a foaf:Person;
197197
foaf:knows [ a foaf:Person;
198198
foaf:name "Gregg Kellogg"];
199199
foaf:name "Manu Sporny" .
200200
))
201201

202202
context = JSON.parse %({
203203
"@context": {
204-
"": "http://manu.sporny.org/",
204+
"": "https://manu.sporny.org/",
205205
"foaf": "http://xmlns.com/foaf/0.1/"
206206
}
207207
})
@@ -218,7 +218,7 @@ require 'json/ld'
218218
"http://xmlns.com/foaf/0.1/name": [{"@value": "Gregg Kellogg"}]
219219
},
220220
{
221-
"@id": "http://manu.sporny.org/#me",
221+
"@id": "https://manu.sporny.org/#me",
222222
"@type": ["http://xmlns.com/foaf/0.1/Person"],
223223
"http://xmlns.com/foaf/0.1/knows": [{"@id": "_:g70265766605380"}],
224224
"http://xmlns.com/foaf/0.1/name": [{"@value": "Manu Sporny"}]
@@ -434,17 +434,6 @@ Many JSON APIs separate properties from their entities using an intermediate obj
434434
```
435435
In this way, nesting survives round-tripping through expansion, and framed output can include nested properties.
436436

437-
### Framing Updates
438-
The [JSON-LD Framing 1.1 Specification]() improves on previous un-released versions.
439-
440-
* [More Specific Frame matching](https://github.com/json-ld/json-ld.org/issues/110) – Allows framing to extend to elements of value objects, and objects are matched through recursive frame matching. `{}` is used as a wildcard, and `[]` as matching nothing.
441-
* [Graph framing](https://github.com/json-ld/json-ld.org/issues/118) – previously, only the merged graph can be framed, this update allows arbitrary graphs to be framed.
442-
* Use `@graph` in frame, matches the default graph, not the merged graph.
443-
* Use `@graph` in property value, causes the apropriatly named graph to be used for filling in values.
444-
* [Reverse properties](https://github.com/json-ld/json-ld.org/issues/311)`@reverse` (or a property defined with `@reverse`) can cause matching values to be included, allowing a matched object to include reverse references to any objects referencing it.
445-
* [@omitDefault behavior](https://github.com/json-ld/json-ld.org/issues/389) – In addition to `true` and `false`, `@omitDefault` can take `@last`, `@always`, `@never`, and `@link`.
446-
* [multiple `@id` matching](https://github.com/json-ld/json-ld.org/issues/424) – A frame can match based on one or more specific object `@id` values.
447-
448437
## Sinatra/Rack support
449438
JSON-LD 1.1 describes support for the _profile_ parameter to a media type in an HTTP ACCEPT header. This allows an HTTP request to specify the format (expanded/compacted/flattened/framed) along with a reference to a context or frame to use to format the returned document.
450439

@@ -490,7 +479,7 @@ The {JSON::LD::ContentNegotiation#call} method looks for a result which includes
490479
See [Rack::LinkedData][] to do the same thing with an RDF Graph or Dataset as the source, rather than Ruby objects.
491480

492481
## Documentation
493-
Full documentation available on [RubyDoc](http://rubydoc.info/gems/json-ld/file/README.md)
482+
Full documentation available on [RubyDoc](https://rubydoc.info/gems/json-ld/file/README.md)
494483

495484
## Differences from [JSON-LD API][]
496485
The specified JSON-LD API is based on a WebIDL definition implementing [Promises][] intended for use within a browser.
@@ -513,12 +502,12 @@ Note, the API method signatures differed in versions before 1.0, in that they al
513502
* {JSON::LD::Writer}
514503

515504
## Dependencies
516-
* [Ruby](http://ruby-lang.org/) (>= 2.2.2)
517-
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0)
505+
* [Ruby](https://ruby-lang.org/) (>= 2.2.2)
506+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0)
518507
* [JSON](https://rubygems.org/gems/json) (>= 2.1)
519508

520509
## Installation
521-
The recommended installation method is via [RubyGems](http://rubygems.org/).
510+
The recommended installation method is via [RubyGems](https://rubygems.org/).
522511
To install the latest official release of the `JSON-LD` gem, do:
523512
```bash
524513
% [sudo] gem install json-ld
@@ -529,10 +518,10 @@ To get a local working copy of the development repository, do:
529518
% git clone git://github.com/ruby-rdf/json-ld.git
530519
```
531520
## Mailing List
532-
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
521+
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>
533522

534523
## Author
535-
* [Gregg Kellogg](http://github.com/gkellogg) - <http://kellogg-assoc.com/>
524+
* [Gregg Kellogg](https://github.com/gkellogg) - <https://greggkellogg.net/>
536525

537526
## Contributing
538527
* Do your best to adhere to the existing coding conventions and idioms.
@@ -551,20 +540,20 @@ License
551540
-------
552541

553542
This is free and unencumbered public domain software. For more information,
554-
see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
555-
556-
[Ruby]: http://ruby-lang.org/
557-
[RDF]: http://www.w3.org/RDF/
558-
[YARD]: http://yardoc.org/
559-
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
560-
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
561-
[RDF.rb]: http://rubygems.org/gems/rdf
562-
[Rack::LinkedData]: http://rubygems.org/gems/rack-linkeddata
563-
[Backports]: http://rubygems.org/gems/backports
564-
[JSON-LD]: http://www.w3.org/TR/json-ld/ "JSON-LD 1.0"
565-
[JSON-LD API]: http://www.w3.org/TR/json-ld-api/ "JSON-LD 1.0 Processing Algorithms and API"
566-
[JSON-LD Framing]: http://json-ld.org/spec/latest/json-ld-framing/ "JSON-LD Framing 1.0"
567-
[Promises]: http://dom.spec.whatwg.org/#promises
543+
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
544+
545+
[Ruby]: https://ruby-lang.org/
546+
[RDF]: https://www.w3.org/RDF/
547+
[YARD]: https://yardoc.org/
548+
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
549+
[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
550+
[RDF.rb]: https://rubygems.org/gems/rdf
551+
[Rack::LinkedData]: https://rubygems.org/gems/rack-linkeddata
552+
[Backports]: https://rubygems.org/gems/backports
553+
[JSON-LD]: https://www.w3.org/TR/json-ld11/ "JSON-LD 1.1"
554+
[JSON-LD API]: https://www.w3.org/TR/json-ld11-api/ "JSON-LD 1.1 Processing Algorithms and API"
555+
[JSON-LD Framing]: https://www.w3.org/TR/json-ld11-framing/ "JSON-LD Framing 1.1"
556+
[Promises]: https://dom.spec.whatwg.org/#promises
568557
[jsonlint]: https://rubygems.org/gems/jsonlint
569-
[Sinatra]: http://www.sinatrarb.com/
570-
[Rack]: http://rack.github.com/
558+
[Sinatra]: https://www.sinatrarb.com/
559+
[Rack]: https://rack.github.com/

Rakefile

+8-9
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323
desc "Generate schema.org context"
2424
task :schema_context do
2525
%x(
26-
script/gen_context http://schema.org/docs/schema_org_rdfa.html \
26+
script/gen_context https://schema.org/docs/schema_org_rdfa.html \
2727
--vocab http://schema.org/ \
2828
--prefix 'schema http://schema.org/' \
2929
--body --hier \
@@ -37,14 +37,13 @@ file "etc/manifests.nt" do
3737
require 'json/ld'
3838
require 'rdf/ntriples'
3939
graph = RDF::Graph.new do |g|
40-
%w( https://json-ld.org/test-suite/tests/compact-manifest.jsonld
41-
https://json-ld.org/test-suite/tests/error-manifest.jsonld
42-
https://json-ld.org/test-suite/tests/expand-manifest.jsonld
43-
https://json-ld.org/test-suite/tests/flatten-manifest.jsonld
44-
https://json-ld.org/test-suite/tests/frame-manifest.jsonld
45-
https://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld
46-
https://json-ld.org/test-suite/tests/remote-doc-manifest.jsonld
47-
https://json-ld.org/test-suite/tests/toRdf-manifest.jsonld
40+
%w( https://w3c.github.io/json-ld-api/tests/compact-manifest.jsonld
41+
https://w3c.github.io/json-ld-api/tests/expand-manifest.jsonld
42+
https://w3c.github.io/json-ld-api/tests/flatten-manifest.jsonld
43+
https://w3c.github.io/json-ld-api/tests/fromRdf-manifest.jsonld
44+
https://w3c.github.io/json-ld-api/tests/remote-doc-manifest.jsonld
45+
https://w3c.github.io/json-ld-api/tests/toRdf-manifest.jsonld
46+
https://w3c.github.io/json-ld-framing/tests/frame-manifest.jsonld
4847
).each do |man|
4948
puts "load #{man}"
5049
g.load(man, unique_bnodes: true)

UNLICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org/>
24+
For more information, please refer to <https://unlicense.org/>

etc/doap.jsonld

+16-14
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,32 @@
2222
"foaf:made": {"@type": "@id"},
2323
"rdfs:isDefinedBy": {"@type": "@id"}
2424
},
25-
"@id": "http://rubygems.org/gems/json-ld",
25+
"@id": "https://rubygems.org/gems/json-ld",
2626
"@type": "doap:Project",
2727
"doap:name": "JSON::LD",
28-
"doap:homepage": "http://github.com/ruby-rdf/json-ld/",
29-
"doap:license": "http://creativecommons.org/licenses/publicdomain/",
28+
"doap:homepage": "https://github.com/ruby-rdf/json-ld/",
29+
"doap:license": "https://creativecommons.org/licenses/publicdomain/",
3030
"doap:shortdesc": "JSON-LD support for RDF.rb.",
3131
"doap:description": "RDF.rb extension for parsing/serializing JSON-LD data.",
3232
"doap:created": "2011-05-07",
3333
"doap:platform": "Ruby",
3434
"doap:implements": [
35-
"http://json-ld.org/spec/latest/json-ld-api/",
36-
"http://json-ld.org/spec/latest/json-ld-syntax/"
35+
"https://www.w3.org/TR/json-ld11/",
36+
"https://www.w3.org/TR/json-ld11-api/",
37+
"https://www.w3.org/TR/json-ld11-framing/"
3738
],
38-
"doap:bug-database": "http://github.com/ruby-rdf/json-ld/issues",
39-
"doap:blog": "http://greggkellogg.net/",
40-
"doap:developer": "http://greggkellogg.net/foaf#me",
41-
"doap:maintainer": "http://greggkellogg.net/foaf#me",
42-
"doap:documenter": "http://greggkellogg.net/foaf#me",
43-
"foaf:maker": "http://greggkellogg.net/foaf#me",
39+
"doap:bug-database": "https://github.com/ruby-rdf/json-ld/issues",
40+
"doap:blog": "https://greggkellogg.net/",
41+
"doap:developer": "https://greggkellogg.net/foaf#me",
42+
"doap:maintainer": "https://greggkellogg.net/foaf#me",
43+
"doap:documenter": "https://greggkellogg.net/foaf#me",
44+
"foaf:maker": "https://greggkellogg.net/foaf#me",
4445
"dc:creator": {
45-
"@id": "http://greggkellogg.net/foaf#me",
46+
"@id": "https://greggkellogg.net/foaf#me",
47+
"@type": "foaf:Person",
4648
"foaf:name": "Gregg Kellogg",
4749
"foaf:mbox": "mailto:gregg@greggkellogg.net",
48-
"foaf:made": "http://rubygems.org/gems/json-ld",
49-
"rdfs:isDefinedBy": "http://greggkellogg.net/foaf"
50+
"foaf:made": "https://rubygems.org/gems/json-ld",
51+
"rdfs:isDefinedBy": "https://greggkellogg.net/foaf"
5052
}
5153
}

etc/doap.nt

+23-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1-
<http://rubygems.org/gems/json-ld> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
2-
<http://rubygems.org/gems/json-ld> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
3-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
4-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/json-ld/issues> .
5-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#created> "2011-05-07"^^<http://www.w3.org/2001/XMLSchema#date> .
6-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#description> "RDF.rb extension for parsing/serializing JSON-LD data."@en .
7-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
8-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
9-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#homepage> <http://github.com/ruby-rdf/json-ld/> .
10-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <http://json-ld.org/spec/latest/json-ld-api/> .
11-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <http://json-ld.org/spec/latest/json-ld-syntax/> .
12-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#license> <http://creativecommons.org/licenses/publicdomain/> .
13-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
14-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#name> "JSON::LD" .
15-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#platform> "Ruby" .
16-
<http://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#shortdesc> "JSON-LD support for RDF.rb."@en .
17-
<http://rubygems.org/gems/json-ld> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .
18-
<http://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://greggkellogg.net/foaf> .
19-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/made> <http://rubygems.org/gems/json-ld> .
20-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> .
21-
<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" .
1+
<https://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
2+
<https://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <https://greggkellogg.net/foaf> .
3+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/made> <https://rubygems.org/gems/json-ld> .
4+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> .
5+
<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> "Gregg Kellogg" .
6+
<https://rubygems.org/gems/json-ld> <http://purl.org/dc/terms/creator> <https://greggkellogg.net/foaf#me> .
7+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#blog> <https://greggkellogg.net/> .
8+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/json-ld/issues> .
9+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#created> "2011-05-07"^^<http://www.w3.org/2001/XMLSchema#date> .
10+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#description> "RDF.rb extension for parsing/serializing JSON-LD data."@en .
11+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#developer> <https://greggkellogg.net/foaf#me> .
12+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#documenter> <https://greggkellogg.net/foaf#me> .
13+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#homepage> <https://github.com/ruby-rdf/json-ld/> .
14+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11-api/> .
15+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11-framing/> .
16+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11/> .
17+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#license> <https://creativecommons.org/licenses/publicdomain/> .
18+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#maintainer> <https://greggkellogg.net/foaf#me> .
19+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#name> "JSON::LD" .
20+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#platform> "Ruby" .
21+
<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#shortdesc> "JSON-LD support for RDF.rb."@en .
22+
<https://rubygems.org/gems/json-ld> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
23+
<https://rubygems.org/gems/json-ld> <http://xmlns.com/foaf/0.1/maker> <https://greggkellogg.net/foaf#me> .

0 commit comments

Comments
 (0)