rdf 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README +5 -5
- data/VERSION +1 -1
- data/lib/rdf/cli/vocab-loader.rb +10 -6
- data/lib/rdf/model/graph.rb +5 -11
- data/lib/rdf/model/statement.rb +1 -1
- data/lib/rdf/model/uri.rb +5 -4
- data/lib/rdf/repository.rb +1 -1
- data/lib/rdf/util/file.rb +33 -11
- data/lib/rdf/vocab.rb +1 -1
- data/lib/rdf/vocab/dcat.rb +213 -0
- data/lib/rdf/vocab/og.rb +76 -41
- data/lib/rdf/vocab/ogc.rb +57 -0
- data/lib/rdf/vocab/schema.rb +230 -154
- metadata +5 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arto Bendiken
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2015-02-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: link_header
|
@@ -251,6 +251,7 @@ files:
|
|
251
251
|
- lib/rdf/vocab/cert.rb
|
252
252
|
- lib/rdf/vocab/dc.rb
|
253
253
|
- lib/rdf/vocab/dc11.rb
|
254
|
+
- lib/rdf/vocab/dcat.rb
|
254
255
|
- lib/rdf/vocab/doap.rb
|
255
256
|
- lib/rdf/vocab/exif.rb
|
256
257
|
- lib/rdf/vocab/foaf.rb
|
@@ -261,6 +262,7 @@ files:
|
|
261
262
|
- lib/rdf/vocab/ma.rb
|
262
263
|
- lib/rdf/vocab/mo.rb
|
263
264
|
- lib/rdf/vocab/og.rb
|
265
|
+
- lib/rdf/vocab/ogc.rb
|
264
266
|
- lib/rdf/vocab/owl.rb
|
265
267
|
- lib/rdf/vocab/prov.rb
|
266
268
|
- lib/rdf/vocab/rdfs.rb
|
@@ -302,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
302
304
|
version: '0'
|
303
305
|
requirements: []
|
304
306
|
rubyforge_project: rdf
|
305
|
-
rubygems_version: 2.4.
|
307
|
+
rubygems_version: 2.4.5
|
306
308
|
signing_key:
|
307
309
|
specification_version: 4
|
308
310
|
summary: A Ruby library for working with Resource Description Framework (RDF) data.
|