shex 0.7.0 → 0.7.1
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.md +3 -3
- data/VERSION +1 -1
- data/etc/doap.ttl +1 -1
- data/lib/shex/parser.rb +1 -1
- metadata +9 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f23772b66ae1d2d65f82803ebc661051084b62bab305781945c3d36a1c9ff1c1
|
|
4
|
+
data.tar.gz: c5cba5902f5c6b2dd0bdf446ec9625dc9baa94682f5375fb3c3b89d1bd76cc91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9ad30899338103d06b8b2d89070990c81215e3bfe0ab0d649bcbb3290e5981fe7aadf15e6456358786fc4f5f68c8a28aafd44d6e440f42130f1778622ebd0dc
|
|
7
|
+
data.tar.gz: 7107749beac51786c8778a1f2ea8a733caf49d8b01d323d0437eecc5d17e873bc1ad083fbc146133cde250dd8705a25105c5f7522afc0eb2773f50ef996b86f5
|
data/README.md
CHANGED
|
@@ -190,7 +190,7 @@ Example usage:
|
|
|
190
190
|
|
|
191
191
|
## Documentation
|
|
192
192
|
|
|
193
|
-
<https://
|
|
193
|
+
<https://ruby-rdf.github.io/shex>
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
## Implementation Notes
|
|
@@ -224,7 +224,7 @@ follows:
|
|
|
224
224
|
|
|
225
225
|
## Resources
|
|
226
226
|
|
|
227
|
-
* <https://
|
|
227
|
+
* <https://ruby-rdf.github.io/shex>
|
|
228
228
|
* <https://github.com/ruby-rdf/shex>
|
|
229
229
|
* <https://rubygems.org/gems/shex>
|
|
230
230
|
|
|
@@ -264,7 +264,7 @@ see <https://unlicense.org/> or the accompanying {file:LICENSE} file.
|
|
|
264
264
|
|
|
265
265
|
[ShExSpec]: http://shex.io/shex-semantics-20170713/
|
|
266
266
|
[RDF]: https://www.w3.org/RDF/
|
|
267
|
-
[RDF.rb]: https://
|
|
267
|
+
[RDF.rb]: https://ruby-rdf.github.io/rdf
|
|
268
268
|
[EBNF]: https://rubygems.org/gems/ebnf
|
|
269
269
|
[YARD]: https://yardoc.org/
|
|
270
270
|
[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.1
|
data/etc/doap.ttl
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
<https://rubygems.org/gems/shex> a doap:Project, earl:TestSubject, earl:Software ;
|
|
12
12
|
doap:name "ShEx" ;
|
|
13
|
-
doap:homepage <https://ruby-rdf.github.
|
|
13
|
+
doap:homepage <https://ruby-rdf.github.io/shex> ;
|
|
14
14
|
doap:license <https://unlicense.org/1.0/> ;
|
|
15
15
|
doap:shortdesc "ShEx is a Shape Expression engine for Ruby RDF.rb."@en ;
|
|
16
16
|
doap:description "ShEx is an Shape Expression engine for the Ruby RDF.rb library suite."@en ;
|
data/lib/shex/parser.rb
CHANGED
|
@@ -30,7 +30,7 @@ module ShEx
|
|
|
30
30
|
# The internal representation of the result using hierarchy of RDF objects and ShEx::Operator
|
|
31
31
|
# objects.
|
|
32
32
|
# @return [Array]
|
|
33
|
-
# @see https://
|
|
33
|
+
# @see https://ruby-rdf.github.io/sparql/SPARQL/Algebra
|
|
34
34
|
attr_accessor :result
|
|
35
35
|
|
|
36
36
|
# Terminals passed to lexer. Order matters!
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregg Kellogg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rdf
|
|
@@ -249,10 +249,15 @@ files:
|
|
|
249
249
|
- lib/shex/shex_context.rb
|
|
250
250
|
- lib/shex/terminals.rb
|
|
251
251
|
- lib/shex/version.rb
|
|
252
|
-
homepage: https://
|
|
252
|
+
homepage: https://github.com/ruby-rdf/shex
|
|
253
253
|
licenses:
|
|
254
254
|
- Unlicense
|
|
255
255
|
metadata:
|
|
256
|
+
documentation_uri: https://ruby-rdf.github.io/shex
|
|
257
|
+
bug_tracker_uri: https://github.com/ruby-rdf/shex/issues
|
|
258
|
+
homepage_uri: https://github.com/ruby-rdf/shex
|
|
259
|
+
mailing_list_uri: https://lists.w3.org/Archives/Public/public-rdf-ruby/
|
|
260
|
+
source_code_uri: https://github.com/ruby-rdf/shex
|
|
256
261
|
yard.run: yri
|
|
257
262
|
post_install_message:
|
|
258
263
|
rdoc_options: []
|
|
@@ -269,7 +274,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
269
274
|
- !ruby/object:Gem::Version
|
|
270
275
|
version: '0'
|
|
271
276
|
requirements: []
|
|
272
|
-
rubygems_version: 3.
|
|
277
|
+
rubygems_version: 3.2.32
|
|
273
278
|
signing_key:
|
|
274
279
|
specification_version: 4
|
|
275
280
|
summary: Implementation of Shape Expressions (ShEx) for RDF.rb
|