neo4j 6.0.1 → 6.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/property.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba8e9dd2a99d71ec77769df55c3bba43ab068f24
|
4
|
+
data.tar.gz: f7daa016f99de0900a5401185a7cce81adf3f1c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d3a1d21c13e16765efe7f0f16deb7a0c2f9832e6c7b5a01523de660f025142300c427cadca7bc2dacb5688f09ee8df41d6902f1fdde36aa7b4006f150d8b369
|
7
|
+
data.tar.gz: 4b391f5cae01b5beeb4e271b4f076e159fa99d1e2177a9d7ee4249983254dac8f7b935e80d059b4828d8b0e8f1240cf33f6baec6b63c5489807c6a1c93a61d0d
|
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
|
+
## [6.0.2] - 12-16-2015
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Fixed issue where association setting can't be set on initialize via #new (#1065)
|
11
|
+
|
6
12
|
## [6.0.1] - 11-27-2015
|
7
13
|
|
8
14
|
### Fixed
|
@@ -6,7 +6,7 @@ module Neo4j::ActiveNode
|
|
6
6
|
def initialize(attributes = nil)
|
7
7
|
super(attributes)
|
8
8
|
@attributes ||= Hash[self.class.attributes_nil_hash]
|
9
|
-
send_props(@relationship_props) if
|
9
|
+
send_props(@relationship_props) if !@relationship_props.nil?
|
10
10
|
end
|
11
11
|
|
12
12
|
module ClassMethods
|
data/lib/neo4j/version.rb
CHANGED
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: 6.0.
|
4
|
+
version: 6.0.2
|
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: 2015-
|
11
|
+
date: 2015-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|