rdf-reasoner 0.6.2 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -3
- data/VERSION +1 -1
- data/lib/rdf/reasoner.rb +0 -1
- data/lib/rdf/reasoner/extensions.rb +2 -2
- data/lib/rdf/reasoner/rdfs.rb +14 -14
- data/lib/rdf/reasoner/schema.rb +85 -29
- metadata +22 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76b5e839eb5062fe5242c877013f8586bf3aabb3ebb52eef3d124130eb7e1a2a
|
4
|
+
data.tar.gz: 8103c9212976dd3917d8d2f590456b2d88a9331a3d3b2d0395be43e89bd51868
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e83c1542bd875748049d5c2faa321a6dbd9ec46a1ac63c8f6e3fb6ad75db04ecaff1037e0c5019fcec650edd4d9e834fb02c4e29997204eec2f16df398eb915c
|
7
|
+
data.tar.gz: 20120ecee4e8a7ea2a31e37ac136103057ae1474d1123551073a3382ca9c24e69fc802b92f97c8990805c072a6a98b6b70cac15a65bd65efced877a1a4c70afd
|
data/README.md
CHANGED
@@ -1,4 +1,13 @@
|
|
1
|
-
#
|
1
|
+
# RDF::Reasoner
|
2
|
+
|
3
|
+
A partial RDFS/OWL/schema.org reasoner for [RDF.rb][].
|
4
|
+
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/rdf-reasoner.png)](https://badge.fury.io/rb/rdf-reasoner)
|
6
|
+
[![Build Status](https://github.com/ruby-rdf/rdf-reasoner/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rdf-reasoner/actions?query=workflow%3ACI)
|
7
|
+
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-reasoner/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/rdf-reasoner?branch=develop)
|
8
|
+
[![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf)
|
9
|
+
|
10
|
+
## Description
|
2
11
|
|
3
12
|
Reasons over RDFS/OWL vocabularies and schema.org to generate statements which are entailed based on base RDFS/OWL rules along with vocabulary information. It can also be used to ask specific questions, such as if a given object is consistent with the vocabulary ruleset. This can be used to implement [SPARQL Entailment][] Regimes and [RDF Schema][] entailment.
|
4
13
|
|
@@ -136,7 +145,9 @@ The `rdf` command-line interface is extended with `entail` and `lint` commands.
|
|
136
145
|
list in the the `README`. Alphabetical order applies.
|
137
146
|
* Do note that in order for us to merge any non-trivial changes (as a rule
|
138
147
|
of thumb, additions larger than about 15 lines of code), we need an
|
139
|
-
explicit [public domain dedication][PDD] on record from you
|
148
|
+
explicit [public domain dedication][PDD] on record from you,
|
149
|
+
which you will be asked to agree to on the first commit to a repo within the organization.
|
150
|
+
Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.
|
140
151
|
|
141
152
|
## License
|
142
153
|
|
@@ -147,7 +158,7 @@ see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
|
|
147
158
|
[RDF]: https://www.w3.org/RDF/
|
148
159
|
[YARD]: https://yardoc.org/
|
149
160
|
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
|
150
|
-
[PDD]: https://
|
161
|
+
[PDD]: https://unlicense.org/#unlicensing-contributions
|
151
162
|
[SPARQL]: https://en.wikipedia.org/wiki/SPARQL
|
152
163
|
[SPARQL Query]: https://www.w3.org/TR/2013/REC-sparql11-query-20130321/
|
153
164
|
[SPARQL Entailment]:https://www.w3.org/TR/sparql11-entailment/
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.7.0
|
data/lib/rdf/reasoner.rb
CHANGED
@@ -241,7 +241,7 @@ module RDF
|
|
241
241
|
# Must be a defined term, not in RDF or RDFS vocabularies
|
242
242
|
if term && term.class?
|
243
243
|
# Warn against using a deprecated term
|
244
|
-
superseded = term.
|
244
|
+
superseded = term.properties[:'http://schema.org/supersededBy']
|
245
245
|
superseded = superseded.pname if superseded.respond_to?(:pname)
|
246
246
|
(messages[:class] ||= {})[pname] = ["Term is superseded by #{superseded}"] if superseded
|
247
247
|
else
|
@@ -266,7 +266,7 @@ module RDF
|
|
266
266
|
# Must be a defined property
|
267
267
|
if term.respond_to?(:property?) && term.property?
|
268
268
|
# Warn against using a deprecated term
|
269
|
-
superseded = term.
|
269
|
+
superseded = term.properties[:'http://schema.org/supersededBy']
|
270
270
|
superseded = superseded.pname if superseded.respond_to?(:pname)
|
271
271
|
(messages[:property] ||= {})[pname] = ["Term is superseded by #{superseded}"] if superseded
|
272
272
|
else
|
data/lib/rdf/reasoner/rdfs.rb
CHANGED
@@ -290,12 +290,12 @@ module RDF::Reasoner
|
|
290
290
|
# XSD types are valid if the datatype matches, or they are plain and valid according to the grammar of the range
|
291
291
|
resource.datatype == range ||
|
292
292
|
resource.plain? && RDF::Literal.new(resource.value, datatype: range).valid?
|
293
|
-
elsif range.start_with?(
|
293
|
+
elsif range.start_with?("http://ogp.me/ns/class#")
|
294
294
|
case range
|
295
|
-
when RDF::
|
296
|
-
[RDF::
|
295
|
+
when RDF::URI("http://ogp.me/ns/class#boolean_str")
|
296
|
+
[RDF::URI("http://ogp.me/ns/class#boolean_str"), RDF::XSD.boolean].include?(resource.datatype) ||
|
297
297
|
resource.plain? && RDF::Literal::Boolean.new(resource.value).valid?
|
298
|
-
when RDF::
|
298
|
+
when RDF::URI("http://ogp.me/ns/class#date_time_str")
|
299
299
|
# Schema.org date based on ISO 8601, mapped to appropriate XSD types for validation
|
300
300
|
case resource
|
301
301
|
when RDF::Literal::Date, RDF::Literal::Time, RDF::Literal::DateTime, RDF::Literal::Duration
|
@@ -303,27 +303,27 @@ module RDF::Reasoner
|
|
303
303
|
else
|
304
304
|
ISO_8601.match(resource.value)
|
305
305
|
end
|
306
|
-
when RDF::
|
306
|
+
when RDF::URI("http://ogp.me/ns/class#determiner_str")
|
307
307
|
# The lexical space: "", "the", "a", "an", and "auto".
|
308
308
|
resource.plain? && (%w(the a an auto) + [""]).include?(resource.value)
|
309
|
-
when RDF::
|
309
|
+
when RDF::URI("http://ogp.me/ns/class#float_str")
|
310
310
|
# A string representation of a 64-bit signed floating point number. Example lexical values include "1.234", "-1.234", "1.2e3", "-1.2e3", and "7E-10".
|
311
|
-
[RDF::
|
311
|
+
[RDF::URI("http://ogp.me/ns/class#float_str"), RDF::Literal::Double, RDF::Literal::Float].include?(resource.datatype) ||
|
312
312
|
resource.plain? && RDF::Literal::Double.new(resource.value).valid?
|
313
|
-
when RDF::
|
313
|
+
when RDF::URI("http://ogp.me/ns/class#integer_str")
|
314
314
|
resource.is_a?(RDF::Literal::Integer) ||
|
315
|
-
[RDF::
|
315
|
+
[RDF::URI("http://ogp.me/ns/class#integer_str")].include?(resource.datatype) ||
|
316
316
|
resource.plain? && RDF::Literal::Integer.new(resource.value).valid?
|
317
|
-
when RDF::
|
317
|
+
when RDF::URI("http://ogp.me/ns/class#mime_type_str")
|
318
318
|
# Valid mime type strings \(e.g., "application/mp3"\).
|
319
|
-
[RDF::
|
319
|
+
[RDF::URI("http://ogp.me/ns/class#mime_type_str")].include?(resource.datatype) ||
|
320
320
|
resource.plain? && resource.value =~ %r(^[\w\-\+]+/[\w\-\+]+$)
|
321
|
-
when RDF::
|
321
|
+
when RDF::URI("http://ogp.me/ns/class#string")
|
322
322
|
resource.plain?
|
323
|
-
when RDF::
|
323
|
+
when RDF::URI("http://ogp.me/ns/class#url")
|
324
324
|
# A string of Unicode characters forming a valid URL having the http or https scheme.
|
325
325
|
u = RDF::URI(resource.value)
|
326
|
-
resource.datatype == RDF::
|
326
|
+
resource.datatype == RDF::URI("http://ogp.me/ns/class#url") ||
|
327
327
|
resource.datatype == RDF::XSD.anyURI ||
|
328
328
|
resource.simple? && u.valid? && u.scheme.to_s =~ /^https?$/
|
329
329
|
else
|
data/lib/rdf/reasoner/schema.rb
CHANGED
@@ -24,7 +24,9 @@ module RDF::Reasoner
|
|
24
24
|
# Fully entailed types of resource, if not provided, they are queried
|
25
25
|
def domain_compatible_schema?(resource, queryable, options = {})
|
26
26
|
raise RDF::Reasoner::Error, "#{self} can't get domains" unless property?
|
27
|
-
domains = Array(self.domainIncludes)
|
27
|
+
domains = Array(self.domainIncludes) +
|
28
|
+
Array(self.properties[:'https://schema.org/domainIncludes']) -
|
29
|
+
[RDF::OWL.Thing]
|
28
30
|
|
29
31
|
# Fully entailed types of the resource
|
30
32
|
types = entailed_types(resource, queryable, **options) unless domains.empty?
|
@@ -34,8 +36,8 @@ module RDF::Reasoner
|
|
34
36
|
|
35
37
|
# Resource may still be acceptable if types include schema:Role, and any any other resource references `resource` using this property
|
36
38
|
resource_acceptable ||
|
37
|
-
types.include?(RDF::
|
38
|
-
|
39
|
+
(types.include?(RDF::URI("http://schema.org/Role")) || types.include?(RDF::URI("https://schema.org/Role"))) &&
|
40
|
+
!queryable.query({predicate: self, object: resource}).empty?
|
39
41
|
end
|
40
42
|
|
41
43
|
##
|
@@ -54,16 +56,23 @@ module RDF::Reasoner
|
|
54
56
|
# Fully entailed types of resource, if not provided, they are queried
|
55
57
|
def range_compatible_schema?(resource, queryable, options = {})
|
56
58
|
raise RDF::Reasoner::Error, "#{self} can't get ranges" unless property?
|
57
|
-
if !(ranges = Array(self.rangeIncludes)
|
59
|
+
if !(ranges = Array(self.rangeIncludes) +
|
60
|
+
Array(self.properties[:'https://schema.org/rangeIncludes']) -
|
61
|
+
[RDF::OWL.Thing]).empty?
|
58
62
|
if resource.literal?
|
59
63
|
ranges.any? do |range|
|
60
64
|
case range
|
61
65
|
when RDF::RDFS.Literal then true
|
62
|
-
when RDF::
|
63
|
-
|
64
|
-
|
66
|
+
when RDF::URI("http://schema.org/Text"), RDF::URI("https://schema.org/Text")
|
67
|
+
resource.plain? || resource.datatype == RDF::URI("http://schema.org/Text")
|
68
|
+
when RDF::URI("http://schema.org/Boolean"), RDF::URI("https://schema.org/Boolean")
|
69
|
+
[
|
70
|
+
RDF::URI("http://schema.org/Boolean"),
|
71
|
+
RDF::URI("https://schema.org/Boolean"),
|
72
|
+
RDF::XSD.boolean
|
73
|
+
].include?(resource.datatype) ||
|
65
74
|
resource.plain? && RDF::Literal::Boolean.new(resource.value).valid?
|
66
|
-
when RDF::
|
75
|
+
when RDF::URI("http://schema.org/Date"), RDF::URI("https://schema.org/Date")
|
67
76
|
# Schema.org date based on ISO 8601, mapped to appropriate XSD types for validation
|
68
77
|
case resource
|
69
78
|
when RDF::Literal::Date, RDF::Literal::Time, RDF::Literal::DateTime, RDF::Literal::Duration
|
@@ -71,35 +80,56 @@ module RDF::Reasoner
|
|
71
80
|
else
|
72
81
|
ISO_8601.match(resource.value)
|
73
82
|
end
|
74
|
-
when RDF::
|
75
|
-
resource.datatype == RDF::
|
83
|
+
when RDF::URI("http://schema.org/DateTime"), RDF::URI("https://schema.org/DateTime")
|
84
|
+
resource.datatype == RDF::URI("http://schema.org/DateTime") ||
|
85
|
+
resource.datatype == RDF::URI("https://schema.org/DateTime") ||
|
76
86
|
resource.is_a?(RDF::Literal::DateTime) ||
|
77
87
|
resource.plain? && RDF::Literal::DateTime.new(resource.value).valid?
|
78
|
-
when RDF::
|
88
|
+
when RDF::URI("http://schema.org/Duration"), RDF::URI("https://schema.org/Duration")
|
79
89
|
value = resource.value
|
80
90
|
value = "P#{value}" unless value.start_with?("P")
|
81
|
-
resource.datatype == RDF::
|
91
|
+
resource.datatype == RDF::URI("http://schema.org/Duration") ||
|
92
|
+
resource.datatype == RDF::URI("https://schema.org/Duration") ||
|
82
93
|
resource.is_a?(RDF::Literal::Duration) ||
|
83
94
|
resource.plain? && RDF::Literal::Duration.new(value).valid?
|
84
|
-
when RDF::
|
85
|
-
resource.datatype == RDF::
|
95
|
+
when RDF::URI("http://schema.org/Time"), RDF::URI("https://schema.org/Time")
|
96
|
+
resource.datatype == RDF::URI("http://schema.org/Time") ||
|
97
|
+
resource.datatype == RDF::URI("https://schema.org/Time") ||
|
86
98
|
resource.is_a?(RDF::Literal::Time) ||
|
87
99
|
resource.plain? && RDF::Literal::Time.new(resource.value).valid?
|
88
|
-
when RDF::
|
100
|
+
when RDF::URI("http://schema.org/Number"), RDF::URI("https://schema.org/Number")
|
89
101
|
resource.is_a?(RDF::Literal::Numeric) ||
|
90
|
-
[
|
102
|
+
[
|
103
|
+
RDF::URI("http://schema.org/Number"),
|
104
|
+
RDF::URI("http://schema.org/Float"),
|
105
|
+
RDF::URI("http://schema.org/Integer"),
|
106
|
+
RDF::URI("https://schema.org/Number"),
|
107
|
+
RDF::URI("https://schema.org/Float"),
|
108
|
+
RDF::URI("https://schema.org/Integer"),
|
109
|
+
].include?(resource.datatype) ||
|
91
110
|
resource.plain? && RDF::Literal::Integer.new(resource.value).valid? ||
|
92
111
|
resource.plain? && RDF::Literal::Double.new(resource.value).valid?
|
93
|
-
when RDF::
|
112
|
+
when RDF::URI("http://schema.org/Float"), RDF::URI("https://schema.org/Float")
|
94
113
|
resource.is_a?(RDF::Literal::Double) ||
|
95
|
-
[
|
114
|
+
[
|
115
|
+
RDF::URI("http://schema.org/Number"),
|
116
|
+
RDF::URI("http://schema.org/Float"),
|
117
|
+
RDF::URI("https://schema.org/Number"),
|
118
|
+
RDF::URI("https://schema.org/Float"),
|
119
|
+
].include?(resource.datatype) ||
|
96
120
|
resource.plain? && RDF::Literal::Double.new(resource.value).valid?
|
97
|
-
when RDF::
|
121
|
+
when RDF::URI("http://schema.org/Integer"), RDF::URI("https://schema.org/Integer")
|
98
122
|
resource.is_a?(RDF::Literal::Integer) ||
|
99
|
-
[
|
123
|
+
[
|
124
|
+
RDF::URI("http://schema.org/Number"),
|
125
|
+
RDF::URI("http://schema.org/Integer"),
|
126
|
+
RDF::URI("https://schema.org/Number"),
|
127
|
+
RDF::URI("https://schema.org/Integer"),
|
128
|
+
].include?(resource.datatype) ||
|
100
129
|
resource.plain? && RDF::Literal::Integer.new(resource.value).valid?
|
101
|
-
when RDF::
|
102
|
-
resource.datatype == RDF::
|
130
|
+
when RDF::URI("http://schema.org/URL"), RDF::URI("https://schema.org/URL")
|
131
|
+
resource.datatype == RDF::URI("http://schema.org/URL") ||
|
132
|
+
resource.datatype == RDF::URI("https://schema.org/URL") ||
|
103
133
|
resource.datatype == RDF::XSD.anyURI ||
|
104
134
|
resource.plain? && RDF::Literal::AnyURI.new(resource.value).valid?
|
105
135
|
else
|
@@ -117,11 +147,21 @@ module RDF::Reasoner
|
|
117
147
|
end
|
118
148
|
end
|
119
149
|
end
|
120
|
-
elsif %w(
|
150
|
+
elsif %w(
|
151
|
+
http://schema.org/True
|
152
|
+
http://schema.org/False
|
153
|
+
https://schema.org/True
|
154
|
+
https://schema.org/False
|
155
|
+
).include?(resource) &&
|
156
|
+
(ranges.include?(RDF::URI("http://schema.org/Boolean")) || ranges.include?(RDF::URI("https://schema.org/Boolean")))
|
121
157
|
true # Special case for schema boolean resources
|
122
|
-
elsif ranges.include?(RDF::
|
158
|
+
elsif (ranges.include?(RDF::URI("http://schema.org/URL")) || ranges.include?(RDF::URI("http://schema.org/URL"))) &&
|
159
|
+
resource.uri?
|
123
160
|
true # schema:URL matches URI resources
|
124
|
-
elsif ranges == [RDF::
|
161
|
+
elsif ranges == [RDF::URI("http://schema.org/Text")] && resource.uri?
|
162
|
+
# Allowed if resource is untyped
|
163
|
+
entailed_types(resource, queryable, **options).empty?
|
164
|
+
elsif ranges == [RDF::URI("https://schema.org/Text")] && resource.uri?
|
125
165
|
# Allowed if resource is untyped
|
126
166
|
entailed_types(resource, queryable, **options).empty?
|
127
167
|
elsif literal_range?(ranges)
|
@@ -137,7 +177,7 @@ module RDF::Reasoner
|
|
137
177
|
resource_acceptable ||
|
138
178
|
|
139
179
|
# Resource also acceptable if it is a Role, and the Role object contains the same predicate having a compatible object
|
140
|
-
types.include?(RDF::
|
180
|
+
(types.include?(RDF::URI("http://schema.org/Role")) || types.include?(RDF::URI("https://schema.org/Role"))) &&
|
141
181
|
queryable.query({subject: resource, predicate: self}).any? do |stmt|
|
142
182
|
acc = self.range_compatible_schema?(stmt.object, queryable)
|
143
183
|
acc
|
@@ -158,9 +198,25 @@ module RDF::Reasoner
|
|
158
198
|
def literal_range?(ranges)
|
159
199
|
ranges.all? do |range|
|
160
200
|
case range
|
161
|
-
when RDF::RDFS.Literal,
|
162
|
-
RDF::
|
163
|
-
RDF::
|
201
|
+
when RDF::RDFS.Literal,
|
202
|
+
RDF::URI("http://schema.org/Text"),
|
203
|
+
RDF::URI("http://schema.org/Boolean"),
|
204
|
+
RDF::URI("http://schema.org/Date"),
|
205
|
+
RDF::URI("http://schema.org/DateTime"),
|
206
|
+
RDF::URI("http://schema.org/Time"),
|
207
|
+
RDF::URI("http://schema.org/URL"),
|
208
|
+
RDF::URI("http://schema.org/Number"),
|
209
|
+
RDF::URI("http://schema.org/Float"),
|
210
|
+
RDF::URI("http://schema.org/Integer"),
|
211
|
+
RDF::URI("https://schema.org/Text"),
|
212
|
+
RDF::URI("https://schema.org/Boolean"),
|
213
|
+
RDF::URI("https://schema.org/Date"),
|
214
|
+
RDF::URI("https://schema.org/DateTime"),
|
215
|
+
RDF::URI("https://schema.org/Time"),
|
216
|
+
RDF::URI("https://schema.org/URL"),
|
217
|
+
RDF::URI("https://schema.org/Number"),
|
218
|
+
RDF::URI("https://schema.org/Float"),
|
219
|
+
RDF::URI("https://schema.org/Integer")
|
164
220
|
true
|
165
221
|
else
|
166
222
|
# If this is an XSD range, look for appropriate literal
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-reasoner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gregg Kellogg
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rdf
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3.1'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.1.
|
22
|
+
version: 3.1.12
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,17 +29,14 @@ dependencies:
|
|
29
29
|
version: '3.1'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.1.
|
32
|
+
version: 3.1.12
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
|
-
name: rdf-
|
34
|
+
name: rdf-xsd
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: '3.1'
|
40
|
-
- - ">="
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: 3.1.5
|
43
40
|
type: :runtime
|
44
41
|
prerelease: false
|
45
42
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -47,17 +44,14 @@ dependencies:
|
|
47
44
|
- - "~>"
|
48
45
|
- !ruby/object:Gem::Version
|
49
46
|
version: '3.1'
|
50
|
-
- - ">="
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: 3.1.5
|
53
47
|
- !ruby/object:Gem::Dependency
|
54
|
-
name: rdf-
|
48
|
+
name: rdf-spec
|
55
49
|
requirement: !ruby/object:Gem::Requirement
|
56
50
|
requirements:
|
57
51
|
- - "~>"
|
58
52
|
- !ruby/object:Gem::Version
|
59
53
|
version: '3.1'
|
60
|
-
type: :
|
54
|
+
type: :development
|
61
55
|
prerelease: false
|
62
56
|
version_requirements: !ruby/object:Gem::Requirement
|
63
57
|
requirements:
|
@@ -65,12 +59,15 @@ dependencies:
|
|
65
59
|
- !ruby/object:Gem::Version
|
66
60
|
version: '3.1'
|
67
61
|
- !ruby/object:Gem::Dependency
|
68
|
-
name: rdf-
|
62
|
+
name: rdf-vocab
|
69
63
|
requirement: !ruby/object:Gem::Requirement
|
70
64
|
requirements:
|
71
65
|
- - "~>"
|
72
66
|
- !ruby/object:Gem::Version
|
73
67
|
version: '3.1'
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 3.1.10
|
74
71
|
type: :development
|
75
72
|
prerelease: false
|
76
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -78,6 +75,9 @@ dependencies:
|
|
78
75
|
- - "~>"
|
79
76
|
- !ruby/object:Gem::Version
|
80
77
|
version: '3.1'
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 3.1.10
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: rdf-turtle
|
83
83
|
requirement: !ruby/object:Gem::Requirement
|
@@ -126,28 +126,28 @@ dependencies:
|
|
126
126
|
requirements:
|
127
127
|
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
|
-
version: '3.
|
129
|
+
version: '3.10'
|
130
130
|
type: :development
|
131
131
|
prerelease: false
|
132
132
|
version_requirements: !ruby/object:Gem::Requirement
|
133
133
|
requirements:
|
134
134
|
- - "~>"
|
135
135
|
- !ruby/object:Gem::Version
|
136
|
-
version: '3.
|
136
|
+
version: '3.10'
|
137
137
|
- !ruby/object:Gem::Dependency
|
138
138
|
name: yard
|
139
139
|
requirement: !ruby/object:Gem::Requirement
|
140
140
|
requirements:
|
141
141
|
- - "~>"
|
142
142
|
- !ruby/object:Gem::Version
|
143
|
-
version: 0.9
|
143
|
+
version: '0.9'
|
144
144
|
type: :development
|
145
145
|
prerelease: false
|
146
146
|
version_requirements: !ruby/object:Gem::Requirement
|
147
147
|
requirements:
|
148
148
|
- - "~>"
|
149
149
|
- !ruby/object:Gem::Version
|
150
|
-
version: 0.9
|
150
|
+
version: '0.9'
|
151
151
|
description: Reasons over RDFS/OWL vocabularies to generate statements which are entailed
|
152
152
|
based on base RDFS/OWL rules along with vocabulary information. It can also be used
|
153
153
|
to ask specific questions, such as if a given object is consistent with the vocabulary
|
@@ -172,7 +172,7 @@ homepage: https://github.com/ruby-rdf/rdf-reasoner
|
|
172
172
|
licenses:
|
173
173
|
- Unlicense
|
174
174
|
metadata: {}
|
175
|
-
post_install_message:
|
175
|
+
post_install_message:
|
176
176
|
rdoc_options: []
|
177
177
|
require_paths:
|
178
178
|
- lib
|
@@ -187,8 +187,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
187
|
- !ruby/object:Gem::Version
|
188
188
|
version: '0'
|
189
189
|
requirements: []
|
190
|
-
rubygems_version: 3.
|
191
|
-
signing_key:
|
190
|
+
rubygems_version: 3.2.3
|
191
|
+
signing_key:
|
192
192
|
specification_version: 4
|
193
193
|
summary: RDFS/OWL Reasoner for RDF.rb
|
194
194
|
test_files: []
|