rdf-isomorphic 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/VERSION +1 -1
  4. data/lib/rdf/isomorphic.rb +5 -2
  5. metadata +10 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8058d084a80269701aa4759705d8e6fb184a73b9377291d4758fa6888dec165e
4
- data.tar.gz: 0e5f344cf5d21e55e8f35c13a3e99edaded322dead19fa28996433a801e3dc87
3
+ metadata.gz: 49c61ee96966b6063eb6a8983dd8bf97f5b5cedb9d108fd238113dc7a9416d01
4
+ data.tar.gz: 4186c4ff77576a77a70f13174f69c7f880b4e37f79fad59bfd83f36a44179d07
5
5
  SHA512:
6
- metadata.gz: 2829dee1b2a98c812d57a2127a776a7cf594b496580c503df29cbafb71199b4f8e54303763c598c280d8ebe3b8dabb8b8d3f9eedc20b443b190e31279fb9390f
7
- data.tar.gz: 909103454560efd2471b35a9b595c5d8df875afe70ae935ad5fcba72436dd96c92c78bb6468c192f170bd6d425e2842323036438be1ec9417b82191a6011fa3f
6
+ metadata.gz: a037ee04fb91ff3d98ffa5bc7165240a17395ebd40cf1c6543a562a14f019a72037cb1e2e3c94e51296146cf36e28d59b9c2190bc40c8b956331ce5ece01445f
7
+ data.tar.gz: fe150895a773f28f10175e77a9226eea9442745d27eb24af21fc65a61cbf9d8174252707ed5d8377c6dbb531a890c7f1a1696bf89e1a36a7609897d9e9a6cc45
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  This is an [RDF.rb][] extension for RDF Isomorphism functionality for RDF::Enumerables.
4
4
  That includes RDF::Repository, RDF::Graph, query results, and more.
5
5
 
6
- For more information about [RDF.rb][], see <https://www.rubydoc.info/github/ruby-rdf/rdf/>
6
+ For more information about [RDF.rb][], see <https://ruby-rdf.github.io/rdf/>
7
7
 
8
8
  [![Gem Version](https://badge.fury.io/rb/rdf-isomorphic.png)](https://badge.fury.io/rb/rdf-isomorphic)
9
9
  [![Build Status](https://github.com/ruby-rdf/rdf-isomorphic/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rdf-isomorphic/actions?query=workflow%3ACI)
@@ -71,7 +71,7 @@ specs in RDF libraries. Try this in your tests:
71
71
  * Issues: <https://github.com/ruby-rdf/rdf-isomorphic/issues>
72
72
 
73
73
  ### See also
74
- * RDF.rb: <https://ruby-rdf.github.com>
74
+ * RDF.rb: <https://ruby-rdf.github.io>
75
75
  * RDF.rb source: <https://github.com/ruby-rdf/rdf>
76
76
 
77
77
  ## Contributing
@@ -100,7 +100,7 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo
100
100
  This is free and unencumbered public domain software. For more information,
101
101
  see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
102
102
 
103
- [RDF.rb]: https://ruby-rdf.github.com/
103
+ [RDF.rb]: https://ruby-rdf.github.io/
104
104
  [YARD]: https://yardoc.org/
105
105
  [YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
106
106
  [PDD]: https://unlicense.org/#unlicensing-contributions
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.2.0
1
+ 3.2.1
@@ -9,7 +9,7 @@ module RDF
9
9
  #
10
10
  # RDF::Isomorphic provides the functions isomorphic_with and bijection_to for RDF::Enumerable.
11
11
  #
12
- # @see https://www.rubydoc.info/github/ruby-rdf/rdf/
12
+ # @see https://ruby-rdf.github.io/rdf/
13
13
  # @see https://www.hpl.hp.com/techreports/2001/HPL-2001-293.pdf
14
14
  module Isomorphic
15
15
  autoload :VERSION, 'rdf/isomorphic/version'
@@ -301,7 +301,10 @@ module RDF
301
301
 
302
302
 
303
303
  # Extend RDF::Enumerables with these functions.
304
- module Enumerable
304
+ module Enumerable
305
+ include RDF::Isomorphic
306
+ end
307
+ class Enumerable::Enumerator
305
308
  include RDF::Isomorphic
306
309
  end
307
310
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-isomorphic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Lavender
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-11-29 00:00:00.000000000 Z
13
+ date: 2022-02-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rdf
@@ -80,10 +80,15 @@ files:
80
80
  - VERSION
81
81
  - lib/rdf/isomorphic.rb
82
82
  - lib/rdf/isomorphic/version.rb
83
- homepage: https://ruby-rdf.github.com/rdf-isomorphic
83
+ homepage: https://github.com/ruby-rdf/rdf-isomorphic
84
84
  licenses:
85
85
  - Unlicense
86
- metadata: {}
86
+ metadata:
87
+ documentation_uri: https://ruby-rdf.github.io/rdf-isomorphic
88
+ bug_tracker_uri: https://github.com/ruby-rdf/rdf-isomorphic/issues
89
+ homepage_uri: https://github.com/ruby-rdf/rdf-isomorphic
90
+ mailing_list_uri: https://lists.w3.org/Archives/Public/public-rdf-ruby/
91
+ source_code_uri: https://github.com/ruby-rdf/rdf-isomorphic
87
92
  post_install_message:
88
93
  rdoc_options: []
89
94
  require_paths:
@@ -99,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
104
  - !ruby/object:Gem::Version
100
105
  version: '0'
101
106
  requirements: []
102
- rubygems_version: 3.3.3
107
+ rubygems_version: 3.1.6
103
108
  signing_key:
104
109
  specification_version: 4
105
110
  summary: RDF Graph/Dataset Isomorphism as defined in RDF 1.1 Concepts.