rdf-ordered-repo 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f43439c8ba4d9d9cb2376e134f91ac477800433d3fdc035a84ad557ce8f93d78
4
- data.tar.gz: 266350c62103ab7c4d32cc25602bb7aa14499222f2ea085c1918e5e6952e8925
3
+ metadata.gz: fc5e91c1a02e80cf40af709aa558cd390611332be606ad91ad8a3ca24aaf52a1
4
+ data.tar.gz: 3f58ec48ccfbfc60c3c330abfce97b9e59563d69f148ea4683dc81554f3a367b
5
5
  SHA512:
6
- metadata.gz: 3942cd5d98be5cc13ebdb26fa7c155788466e2ab0f5051677aa18553e20230325bb8eda2cc2983c472f745addded4d0d356627d6dad09abd5704bd51e0d0b932
7
- data.tar.gz: 7f19953b673e3e571f2c6a997d8ab6c6a771f099b176238775f276223912668917f7cb78877daeb23e6dee47217250f0f0007fcfe1835e84fe8343396375cf80
6
+ metadata.gz: e50c14fbc7e26878fe8451e1301c805243a65b1e494360117e659f6884c7f249ddbe7b11f93900bb647eee2ae0fbf1802b48506c3b449a2be3e2c230aa0e07f0
7
+ data.tar.gz: 2a77db136037a680165a105c0227aac78216edc2deef58116259199e263eb8cc94619676f3ad5d90f1ef84cf08c08a23ce153e98ad2bf251f4e4b0ebfdd5d1fc
data/README.md CHANGED
@@ -44,7 +44,9 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange develo
44
44
  enough, be assured we will eventually add you in there.
45
45
  * Do note that in order for us to merge any non-trivial changes (as a rule
46
46
  of thumb, additions larger than about 15 lines of code), we need an
47
- explicit [public domain dedication][PDD] on record from you.
47
+ explicit [public domain dedication][PDD] on record from you,
48
+ which you will be asked to agree to on the first commit to a repo within the organization.
49
+ Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.
48
50
 
49
51
  ## License
50
52
 
@@ -54,4 +56,4 @@ see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
54
56
  [RDF.rb]: https://ruby-rdf.github.com/
55
57
  [YARD]: https://yardoc.org/
56
58
  [YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
57
- [PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
59
+ [PDD]: https://unlicense.org/#unlicensing-contributions
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.1.1
@@ -8,7 +8,7 @@
8
8
  @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9
9
 
10
10
  <> a doap:Project ;
11
- doap:name "RDF::N3" ;
11
+ doap:name "RDF::OrderedRepo" ;
12
12
  doap:homepage <https://github.com/ruby-rdf/rdf-ordered-repo> ;
13
13
  doap:license <https://unlicense.org/1.0/> ;
14
14
  doap:shortdesc "An order-preserving repository for RDF.rb."@en ;
@@ -280,7 +280,7 @@ module RDF
280
280
  g = DEFAULT_GRAPH unless supports?(:graph_name)
281
281
  g ||= DEFAULT_GRAPH
282
282
 
283
- os = data[g][s][p].dup.delete(o)
283
+ os = data[g][s][p].dup.delete_if {|k,v| k == o}
284
284
  ps = os.empty? ? data[g][s].dup.delete_if {|k,v| k == p} : data[g][s].merge(p => os)
285
285
  ss = ps.empty? ? data[g].dup.delete_if {|k,v| k == s} : data[g].merge(s => ps)
286
286
  return ss.empty? ? data.dup.delete_if {|k,v| k == g} : data.merge(g => ss)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-ordered-repo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.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: 2020-09-22 00:00:00.000000000 Z
11
+ date: 2020-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdf
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  - !ruby/object:Gem::Version
99
99
  version: '0'
100
100
  requirements: []
101
- rubygems_version: 3.1.3
101
+ rubygems_version: 3.1.4
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: An order-preserving repository for RDF.rb.