neo4j 9.1.5 → 9.1.6
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/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/has_n/association.rb +2 -0
- data/lib/neo4j/version.rb +1 -1
- data/neo4j.gemspec +6 -0
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 180d3e1b930a1d7b61aa2d89c52e46c36b4a6d68
|
|
4
|
+
data.tar.gz: 43b5fee65bdff8db960b3ecf17221b102977e670
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0750c3beae563a0e22e3f43ae0954cb76949cadd0af7d32b2971b8b0bf4b7f526eabc3eab9d933cfb101ffba33b6edfd9eccf8aa2e83aaca6b8d04312aa68a4
|
|
7
|
+
data.tar.gz: f34d0cf5c8274505df5cec82942ddc488e305efd0cd128560457bd328cd690b69c126315053b8d9e14077b088d201cf29bb3e6146c7809596df87e0dde26af1a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
This file should follow the standards specified on [http://keepachangelog.com/]
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [9.1.6] 2018-03-18
|
|
7
|
+
|
|
8
|
+
## Fixed
|
|
9
|
+
|
|
10
|
+
- Adding link to `CHANGELOG.md` as shown on https://olivierlacan.com/posts/changelogs-on-rubygems-org/
|
|
11
|
+
|
|
6
12
|
## [9.1.5] 2018-03-18
|
|
7
13
|
|
|
8
14
|
## Fixed
|
|
@@ -112,6 +112,8 @@ module Neo4j
|
|
|
112
112
|
when @origin
|
|
113
113
|
origin_type
|
|
114
114
|
else
|
|
115
|
+
# I think that this line is no longer readed since we require either
|
|
116
|
+
# `type`, `rel_class`, or `origin` in associations
|
|
115
117
|
(create || exceptional_target_class?) && decorated_rel_type(@name)
|
|
116
118
|
end
|
|
117
119
|
end
|
data/lib/neo4j/version.rb
CHANGED
data/neo4j.gemspec
CHANGED
|
@@ -26,6 +26,12 @@ A Neo4j OGM (Object-Graph-Mapper) for Ruby heavily inspired by ActiveRecord.
|
|
|
26
26
|
s.has_rdoc = true
|
|
27
27
|
s.extra_rdoc_files = %w( README.md )
|
|
28
28
|
s.rdoc_options = ['--quiet', '--title', 'Neo4j.rb', '--line-numbers', '--main', 'README.rdoc', '--inline-source']
|
|
29
|
+
s.metadata = {
|
|
30
|
+
"homepage_uri" => "http://neo4jrb.io/",
|
|
31
|
+
"changelog_uri" => "https://github.com/neo4jrb/neo4j/blob/master/CHANGELOG.md",
|
|
32
|
+
"source_code_uri" => "https://github.com/neo4jrb/neo4j/",
|
|
33
|
+
"bug_tracker_uri" => "https://github.com/neo4jrb/neo4j/issues",
|
|
34
|
+
}
|
|
29
35
|
|
|
30
36
|
s.add_dependency('orm_adapter', '~> 0.5.0')
|
|
31
37
|
s.add_dependency('activemodel', '>= 4.0')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neo4j
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.1.
|
|
4
|
+
version: 9.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andreas Ronge, Brian Underwood, Chris Grigg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-03-
|
|
11
|
+
date: 2018-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|
|
@@ -339,7 +339,11 @@ files:
|
|
|
339
339
|
homepage: https://github.com/neo4jrb/neo4j/
|
|
340
340
|
licenses:
|
|
341
341
|
- MIT
|
|
342
|
-
metadata:
|
|
342
|
+
metadata:
|
|
343
|
+
homepage_uri: http://neo4jrb.io/
|
|
344
|
+
changelog_uri: https://github.com/neo4jrb/neo4j/blob/master/CHANGELOG.md
|
|
345
|
+
source_code_uri: https://github.com/neo4jrb/neo4j/
|
|
346
|
+
bug_tracker_uri: https://github.com/neo4jrb/neo4j/issues
|
|
343
347
|
post_install_message:
|
|
344
348
|
rdoc_options:
|
|
345
349
|
- "--quiet"
|