Skip to content

Commit 8ee7317

Browse files
committed
Finish 3.2.1
2 parents 637c68e + 1536d8a commit 8ee7317

18 files changed

+149
-70
lines changed

.github/workflows/ci.yml

+29-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
ruby:
2323
- 2.6
2424
- 2.7
25-
- 3.0
25+
- "3.0"
2626
- 3.1
2727
- ruby-head
2828
- jruby
@@ -42,3 +42,31 @@ jobs:
4242
if: "matrix.ruby == '3.0'"
4343
with:
4444
github-token: ${{ secrets.GITHUB_TOKEN }}
45+
wintests:
46+
name: Win64 Ruby ${{ matrix.ruby }}
47+
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
48+
runs-on: windows-latest
49+
env:
50+
CI: true
51+
ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }}
52+
strategy:
53+
fail-fast: false
54+
matrix:
55+
ruby:
56+
- 3.1
57+
steps:
58+
- name: Clone repository
59+
uses: actions/checkout@v2
60+
- name: Set up Ruby
61+
uses: ruby/setup-ruby@v1
62+
with:
63+
ruby-version: ${{ matrix.ruby }}
64+
- name: Install dependencies
65+
run: bundle install --jobs 4 --retry 3
66+
- name: Run tests
67+
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
68+
- name: Coveralls GitHub Action
69+
uses: coverallsapp/[email protected]
70+
if: "matrix.ruby == '3.0'"
71+
with:
72+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/generate-docs.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build & deploy documentation
2+
on:
3+
push:
4+
branches:
5+
- master
6+
workflow_dispatch:
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
name: Update gh-pages with docs
11+
steps:
12+
- name: Clone repository
13+
uses: actions/checkout@v2
14+
- name: Set up Ruby
15+
uses: ruby/setup-ruby@v1
16+
with:
17+
ruby-version: "3.1"
18+
- name: Install required gem dependencies
19+
run: gem install yard --no-document
20+
- name: Build YARD Ruby Documentation
21+
run: yardoc
22+
- name: Deploy
23+
uses: peaceiris/actions-gh-pages@v3
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
publish_dir: ./doc/yard
27+
publish_branch: gh-pages

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source "https://rubygems.org"
2-
gem "nokogiri", '~> 1.10'
2+
gem "nokogiri", '~> 1.13', '>= 1.13.4'
33

44
gemspec
55
gem 'rdf', git: "https://github.com/ruby-rdf/rdf", branch: "develop"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ In the first case, the embedded node is not asserted, and only appears as the su
7272

7373
#### Serializing a Graph containing embedded statements
7474

75-
require 'json-ld'
75+
require 'json/ld'
7676
statement = RDF::Statement(RDF::URI('bob'), RDF::Vocab::FOAF.age, RDF::Literal(23))
7777
graph = RDF::Graph.new << [statement, RDF::URI("ex:certainty"), RDF::Literal(0.9)]
7878
graph.dump(:jsonld, validate: false, standard_prefixes: true)
@@ -565,7 +565,7 @@ The {JSON::LD::ContentNegotiation#call} method looks for a result which includes
565565
See [Rack::LinkedData][] to do the same thing with an RDF Graph or Dataset as the source, rather than Ruby objects.
566566

567567
## Documentation
568-
Full documentation available on [RubyDoc](https://rubydoc.info/gems/json-ld/file/README.md)
568+
Full documentation available on [RubyDoc](https://ruby-rdf.github.io/json-ld/file/README.md)
569569

570570
## Differences from [JSON-LD API][]
571571
The specified JSON-LD API is based on a WebIDL definition implementing [Promises][] intended for use within a browser.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0
1+
3.2.1

example-files/afs_prefix_flag.jsonld

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@id" : "http://example/collection",
3+
"http://example/p" : [ "book:ZZZ" ],
4+
"book" : [ "book:YYY" ],
5+
"@context" : {
6+
"book" : {
7+
"@id" : "http://onbetween.ch/3ms/cms#",
8+
"@type" : "@id"
9+
}
10+
}
11+
}

example-files/shex-expanded.jsonld

+1-1
Original file line numberDiff line numberDiff line change
@@ -118015,7 +118015,7 @@
118015118015
],
118016118016
"http://usefulinc.com/ns/doap#homepage": [
118017118017
{
118018-
"@id": "http://ruby-rdf.github.com/shex"
118018+
"@id": "https://ruby-rdf.github.io/shex"
118019118019
}
118020118020
],
118021118021
"http://usefulinc.com/ns/doap#name": [

example-files/shex-framed.jsonld

+28-28
Original file line numberDiff line numberDiff line change
@@ -40258,7 +40258,7 @@
4025840258
}
4025940259
],
4026040260
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
40261-
"homepage": "http://ruby-rdf.github.com/shex",
40261+
"homepage": "https://ruby-rdf.github.io/shex",
4026240262
"language": "Ruby",
4026340263
"name": "ShEx"
4026440264
},
@@ -40334,7 +40334,7 @@
4033440334
}
4033540335
],
4033640336
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
40337-
"homepage": "http://ruby-rdf.github.com/shex",
40337+
"homepage": "https://ruby-rdf.github.io/shex",
4033840338
"language": "Ruby",
4033940339
"name": "ShEx"
4034040340
},
@@ -40823,7 +40823,7 @@
4082340823
}
4082440824
],
4082540825
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
40826-
"homepage": "http://ruby-rdf.github.com/shex",
40826+
"homepage": "https://ruby-rdf.github.io/shex",
4082740827
"language": "Ruby",
4082840828
"name": "ShEx"
4082940829
},
@@ -40899,7 +40899,7 @@
4089940899
}
4090040900
],
4090140901
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
40902-
"homepage": "http://ruby-rdf.github.com/shex",
40902+
"homepage": "https://ruby-rdf.github.io/shex",
4090340903
"language": "Ruby",
4090440904
"name": "ShEx"
4090540905
},
@@ -41265,7 +41265,7 @@
4126541265
}
4126641266
],
4126741267
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
41268-
"homepage": "http://ruby-rdf.github.com/shex",
41268+
"homepage": "https://ruby-rdf.github.io/shex",
4126941269
"language": "Ruby",
4127041270
"name": "ShEx"
4127141271
},
@@ -41341,7 +41341,7 @@
4134141341
}
4134241342
],
4134341343
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
41344-
"homepage": "http://ruby-rdf.github.com/shex",
41344+
"homepage": "https://ruby-rdf.github.io/shex",
4134541345
"language": "Ruby",
4134641346
"name": "ShEx"
4134741347
},
@@ -55884,7 +55884,7 @@
5588455884
}
5588555885
],
5588655886
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
55887-
"homepage": "http://ruby-rdf.github.com/shex",
55887+
"homepage": "https://ruby-rdf.github.io/shex",
5588855888
"language": "Ruby",
5588955889
"name": "ShEx"
5589055890
},
@@ -56091,7 +56091,7 @@
5609156091
}
5609256092
],
5609356093
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
56094-
"homepage": "http://ruby-rdf.github.com/shex",
56094+
"homepage": "https://ruby-rdf.github.io/shex",
5609556095
"language": "Ruby",
5609656096
"name": "ShEx"
5609756097
},
@@ -63158,7 +63158,7 @@
6315863158
}
6315963159
],
6316063160
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63161-
"homepage": "http://ruby-rdf.github.com/shex",
63161+
"homepage": "https://ruby-rdf.github.io/shex",
6316263162
"language": "Ruby",
6316363163
"name": "ShEx"
6316463164
},
@@ -63319,7 +63319,7 @@
6331963319
}
6332063320
],
6332163321
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63322-
"homepage": "http://ruby-rdf.github.com/shex",
63322+
"homepage": "https://ruby-rdf.github.io/shex",
6332363323
"language": "Ruby",
6332463324
"name": "ShEx"
6332563325
},
@@ -63423,7 +63423,7 @@
6342363423
}
6342463424
],
6342563425
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63426-
"homepage": "http://ruby-rdf.github.com/shex",
63426+
"homepage": "https://ruby-rdf.github.io/shex",
6342763427
"language": "Ruby",
6342863428
"name": "ShEx"
6342963429
},
@@ -63589,7 +63589,7 @@
6358963589
}
6359063590
],
6359163591
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63592-
"homepage": "http://ruby-rdf.github.com/shex",
63592+
"homepage": "https://ruby-rdf.github.io/shex",
6359363593
"language": "Ruby",
6359463594
"name": "ShEx"
6359563595
},
@@ -63693,7 +63693,7 @@
6369363693
}
6369463694
],
6369563695
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63696-
"homepage": "http://ruby-rdf.github.com/shex",
63696+
"homepage": "https://ruby-rdf.github.io/shex",
6369763697
"language": "Ruby",
6369863698
"name": "ShEx"
6369963699
},
@@ -63951,7 +63951,7 @@
6395163951
}
6395263952
],
6395363953
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
63954-
"homepage": "http://ruby-rdf.github.com/shex",
63954+
"homepage": "https://ruby-rdf.github.io/shex",
6395563955
"language": "Ruby",
6395663956
"name": "ShEx"
6395763957
},
@@ -64207,7 +64207,7 @@
6420764207
}
6420864208
],
6420964209
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
64210-
"homepage": "http://ruby-rdf.github.com/shex",
64210+
"homepage": "https://ruby-rdf.github.io/shex",
6421164211
"language": "Ruby",
6421264212
"name": "ShEx"
6421364213
},
@@ -64365,7 +64365,7 @@
6436564365
}
6436664366
],
6436764367
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
64368-
"homepage": "http://ruby-rdf.github.com/shex",
64368+
"homepage": "https://ruby-rdf.github.io/shex",
6436964369
"language": "Ruby",
6437064370
"name": "ShEx"
6437164371
},
@@ -64529,7 +64529,7 @@
6452964529
}
6453064530
],
6453164531
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
64532-
"homepage": "http://ruby-rdf.github.com/shex",
64532+
"homepage": "https://ruby-rdf.github.io/shex",
6453364533
"language": "Ruby",
6453464534
"name": "ShEx"
6453564535
},
@@ -64687,7 +64687,7 @@
6468764687
}
6468864688
],
6468964689
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
64690-
"homepage": "http://ruby-rdf.github.com/shex",
64690+
"homepage": "https://ruby-rdf.github.io/shex",
6469164691
"language": "Ruby",
6469264692
"name": "ShEx"
6469364693
},
@@ -64845,7 +64845,7 @@
6484564845
}
6484664846
],
6484764847
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
64848-
"homepage": "http://ruby-rdf.github.com/shex",
64848+
"homepage": "https://ruby-rdf.github.io/shex",
6484964849
"language": "Ruby",
6485064850
"name": "ShEx"
6485164851
},
@@ -65003,7 +65003,7 @@
6500365003
}
6500465004
],
6500565005
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
65006-
"homepage": "http://ruby-rdf.github.com/shex",
65006+
"homepage": "https://ruby-rdf.github.io/shex",
6500765007
"language": "Ruby",
6500865008
"name": "ShEx"
6500965009
},
@@ -65161,7 +65161,7 @@
6516165161
}
6516265162
],
6516365163
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
65164-
"homepage": "http://ruby-rdf.github.com/shex",
65164+
"homepage": "https://ruby-rdf.github.io/shex",
6516565165
"language": "Ruby",
6516665166
"name": "ShEx"
6516765167
},
@@ -65368,7 +65368,7 @@
6536865368
}
6536965369
],
6537065370
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
65371-
"homepage": "http://ruby-rdf.github.com/shex",
65371+
"homepage": "https://ruby-rdf.github.io/shex",
6537265372
"language": "Ruby",
6537365373
"name": "ShEx"
6537465374
},
@@ -69985,7 +69985,7 @@
6998569985
}
6998669986
],
6998769987
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
69988-
"homepage": "http://ruby-rdf.github.com/shex",
69988+
"homepage": "https://ruby-rdf.github.io/shex",
6998969989
"language": "Ruby",
6999069990
"name": "ShEx"
6999169991
},
@@ -70146,7 +70146,7 @@
7014670146
}
7014770147
],
7014870148
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
70149-
"homepage": "http://ruby-rdf.github.com/shex",
70149+
"homepage": "https://ruby-rdf.github.io/shex",
7015070150
"language": "Ruby",
7015170151
"name": "ShEx"
7015270152
},
@@ -70304,7 +70304,7 @@
7030470304
}
7030570305
],
7030670306
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
70307-
"homepage": "http://ruby-rdf.github.com/shex",
70307+
"homepage": "https://ruby-rdf.github.io/shex",
7030870308
"language": "Ruby",
7030970309
"name": "ShEx"
7031070310
},
@@ -70462,7 +70462,7 @@
7046270462
}
7046370463
],
7046470464
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
70465-
"homepage": "http://ruby-rdf.github.com/shex",
70465+
"homepage": "https://ruby-rdf.github.io/shex",
7046670466
"language": "Ruby",
7046770467
"name": "ShEx"
7046870468
},
@@ -70620,7 +70620,7 @@
7062070620
}
7062170621
],
7062270622
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
70623-
"homepage": "http://ruby-rdf.github.com/shex",
70623+
"homepage": "https://ruby-rdf.github.io/shex",
7062470624
"language": "Ruby",
7062570625
"name": "ShEx"
7062670626
},
@@ -71235,7 +71235,7 @@
7123571235
}
7123671236
],
7123771237
"doapDesc": "ShEx is an Shape Expression engine for the RDF.rb library suite.",
71238-
"homepage": "http://ruby-rdf.github.com/shex",
71238+
"homepage": "https://ruby-rdf.github.io/shex",
7123971239
"language": "Ruby",
7124071240
"name": "ShEx"
7124171241
},

example-files/shex-short.jsonld

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
],
131131
"http://usefulinc.com/ns/doap#homepage": [
132132
{
133-
"@id": "http://ruby-rdf.github.com/shex"
133+
"@id": "https://ruby-rdf.github.io/shex"
134134
}
135135
],
136136
"http://usefulinc.com/ns/doap#developer": [

json-ld.gemspec

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ Gem::Specification.new do |gem|
1212
gem.license = 'Unlicense'
1313
gem.summary = "JSON-LD reader/writer for Ruby."
1414
gem.description = "JSON::LD parses and serializes JSON-LD into RDF and implements expansion, compaction and framing API interfaces for the Ruby RDF.rb library suite."
15+
gem.metadata = {
16+
"documentation_uri" => "https://ruby-rdf.github.io/json-ld",
17+
"bug_tracker_uri" => "https://github.com/ruby-rdf/json-ld/issues",
18+
"homepage_uri" => "https://github.com/ruby-rdf/json-ld",
19+
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
20+
"source_code_uri" => "https://github.com/ruby-rdf/json-ld",
21+
}
1522

1623
gem.authors = ['Gregg Kellogg']
1724
gem.email = '[email protected]'

0 commit comments

Comments
 (0)