Skip to content

Commit

Permalink
Finish 3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jul 10, 2020
2 parents aeff544 + 6cd2ad4 commit d4933bd
Show file tree
Hide file tree
Showing 28 changed files with 2,931 additions and 1,438 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ group :development, :test do
gem 'ruby-prof'
gem 'ebnf', git: 'https://github.com/dryruby/ebnf.git', branch: 'develop'
gem 'json-ld', git: 'https://github.com/ruby-rdf/json-ld.git', branch: 'develop'
gem 'linkeddata', git: 'https://github.com/ruby-rdf/linkeddata.git', branch: 'develop'
#gem 'linkeddata', git: 'https://github.com/ruby-rdf/linkeddata.git', branch: 'develop'
gem 'rdf-aggregate-repo', git: 'https://github.com/ruby-rdf/rdf-aggregate-repo.git', branch: 'develop'
gem 'rdf-isomorphic', git: 'https://github.com/ruby-rdf/rdf-isomorphic.git', branch: 'develop'
gem 'rdf-rdfa', git: 'https://github.com/ruby-rdf/rdf-rdfa.git', branch: 'develop'
gem 'rdf-rdfxml', git: 'https://github.com/ruby-rdf/rdf-rdfxml.git', branch: 'develop'
gem 'rdf-reasoner', git: 'https://github.com/ruby-rdf/rdf-reasoner.git', branch: 'develop'
gem 'rdf-spec', git: 'https://github.com/ruby-rdf/rdf-spec.git', branch: 'develop'
gem 'rdf-turtle', git: 'https://github.com/ruby-rdf/rdf-turtle.git', branch: 'develop'
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.5
3.1.6
49 changes: 35 additions & 14 deletions lib/rdf/vocab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -215,19 +215,7 @@ module Vocab
marcrelators: {
uri: "http://id.loc.gov/vocabulary/relators/",
source: "http://id.loc.gov/vocabulary/relators.rdf",
class_name: "MARCRelators",
patch: %{
@prefix marcrelators: <http://id.loc.gov/vocabulary/relators/> .
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
#DeleteExisting {
# marcrelators:lee rdfs:subPropertyOf marcrelators:lei .
#} .
#AddNew {
# marcrelators:role a owl:ObjectProperty;
# rdfs:comment "This property and its sub-properties are used to associate a Bibliographic Resource with a Resource that played a part in the lifecycle of the Bibliographic Resource. It is the inverse of relators:roleIn.".
#} .
}
class_name: "MARCRelators"
},
mo: {uri: "http://purl.org/ontology/mo/", strict: false},
mods: {
Expand All @@ -236,7 +224,40 @@ module Vocab
},
nfo: {uri: 'http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#', skip: true},
oa: {uri: "http://www.w3.org/ns/oa#"},
og: {uri: "http://ogp.me/ns#", source: 'http://ogp.me/ns/ogp.me.ttl', strict: false},
og: {
uri: "http://ogp.me/ns#",
source: 'http://ogp.me/ns/ogp.me.ttl',
strict: false,
patch: %{
@prefix og: <http://ogp.me/ns#> .
@prefix ogc: <http://ogp.me/ns/class#> .
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
# Used in http://ogp.me/ but not defined
AddNew {
og:image:url a rdf:Property ;
rdfs:label "image:url"@en-US ;
rdfs:comment "Identical to og:image."@en-US ;
rdfs:seeAlso og:image ;
rdfs:isDefinedBy og: ;
owl:sameProperty og:image ;
rdfs:range ogc:url .
og:image:alt a rdf:Property ;
rdfs:label "image:alt"@en-US ;
rdfs:comment "A description of what is in the image (not a caption). If the page specifies an og:image it should specify og:image:alt."@en-US ;
rdfs:seeAlso og:image ;
rdfs:isDefinedBy og: ;
rdfs:range ogc:url .
og:locale:alternate a rdf:Property ;
rdfs:label "locale:alternate"@en-US ;
rdfs:comment "An array of other locales this page is available in."@en-US ;
rdfs:seeAlso og:locale ;
rdfs:isDefinedBy og: ;
rdfs:range ogc:string .
} .
}
},
ogc: {uri: "http://ogp.me/ns/class#", source: "http://ogp.me/ns/ogp.me.ttl", strict: false},
ore: {uri: "http://www.openarchives.org/ore/terms/"},
org: {uri: "http://www.w3.org/ns/org#"},
Expand Down
Loading

0 comments on commit d4933bd

Please sign in to comment.