Skip to content

Commit

Permalink
Finish 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Feb 8, 2022
2 parents bdd7735 + e0228c7 commit 5a34e19
Show file tree
Hide file tree
Showing 88 changed files with 89,117 additions and 88,897 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ruby:
- 2.6
- 2.7
- 3.0
- "3.0"
- 3.1
- ruby-head
- jruby
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build & deploy documentation
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Update gh-pages with docs
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
- name: Install required gem dependencies
run: gem install yard --no-document
- name: Build YARD Ruby Documentation
run: yardoc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/yard
publish_branch: gh-pages
10 changes: 10 additions & 0 deletions .yardopts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
--title "A library of RDF vocabularies for RDF.rb"
--output-dir doc/yard
--protected
--no-private
--hide-void-return
--markup markdown
--readme README.md
-
VERSION
LICENSE
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# rdf-vocab
Common OWL/RDFS Vocabularies for use with Ruby [RDF.rb][]

[TriG][] reader/writer for [RDF.rb][RDF.rb] .

[![Gem Version](https://badge.fury.io/rb/rdf-vocab.png)](https://badge.fury.io/rb/rdf-vocab)
[![Build Status](https://github.com/ruby-rdf/rdf-vocab/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rdf-vocab/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-vocab/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/rdf-vocab?branch=develop)
Expand Down Expand Up @@ -123,7 +121,7 @@ Also adds the `gen-vocab` command to the `rdf` command-line executable to genera

* First, add an entry to `lib/rdf/vocab.rb`, the key names contained within
for guidance. For more information, see the documentation on
[RDF::Vocabulary](https://www.rubydoc.info/github/ruby-rdf/rdf/RDF/Vocabulary).
[RDF::Vocabulary](https://ruby-rdf.github.io/rdf/RDF/Vocabulary).
* Next, create an empty file in `lib/rdf/vocab` based on the key name for
your vocabulary. For example, if you've added the vocabulary `:foo`, create a
new empty file at `lib/rdf/vocab/foo.rb`.
Expand Down Expand Up @@ -159,7 +157,7 @@ This is free and unencumbered public domain software. For more information,
see <https://unlicense.org/> or the accompanying {file:LICENSE} file.

[RDF]: https://www.w3.org/RDF/
[RDF.rb]: https://rubydoc.info/github/ruby-rdf/rdf
[RDF.rb]: https://ruby-rdf.github.io/rdf
[YARD]: https://yardoc.org/
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
[PDD]: https://unlicense.org/#unlicensing-contributions
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.2.1
2 changes: 1 addition & 1 deletion etc/as.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ as:content a owl:DatatypeProperty ;

as:name a owl:DatatypeProperty ;
rdfs:label "name"@en ;
rdfs:name "The default, plain-text display name of the object or link."@en ;
rdfs:comment "The default, plain-text display name of the object or link."@en ;
rdfs:range [
a owl:Class ;
owl:unionOf ( rdf:langString xsd:string )
Expand Down
2 changes: 1 addition & 1 deletion etc/doap.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<> a doap:Project, earl:TestSubject, earl:Software ;
doap:name "RDF::Vocab" ;
doap:homepage <https://ruby-rdf.github.com/rdf-vocab> ;
doap:homepage <https://ruby-rdf.github.io/rdf-vocab> ;
doap:license <https://unlicense.org/1.0/> ;
doap:shortdesc "A library of RDF vocabularies for RDF.rb."@en ;
doap:description "Defines several standard RDF vocabularies for the Ruby RDF.rb library suite."@en ;
Expand Down
2 changes: 2 additions & 0 deletions lib/rdf/vocab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
module RDF
module Vocab
autoload :VERSION, 'rdf/vocab/version'

# @!visibility private
VOCABS = {
acl: {
uri: "http://www.w3.org/ns/auth/acl#",
Expand Down
180 changes: 91 additions & 89 deletions lib/rdf/vocab/acl.rb

Large diffs are not rendered by default.

Loading

0 comments on commit 5a34e19

Please sign in to comment.