neo4j 7.0.13 → 7.0.14
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/railtie.rb +2 -5
- data/lib/neo4j/version.rb +1 -1
- data/lib/rails/generators/neo4j/migration/migration_generator.rb +0 -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: 2f5e92e1dbf3a5c68cdb7db4c5ceca400b3811ad
|
4
|
+
data.tar.gz: 5708b52d084150761bbe442f38bf6464bdd64fa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0162cb551b1f35a5784d12da7cfa13990faadcb06f0389571153980186c4cbb71bbc2aac526e0d4ecc12a6331f7a456266db4ccc0d8ed42f8f73ac613cd59ce
|
7
|
+
data.tar.gz: 9613b2c10db7b05b2730e099431fbaf335facdfed8a08e791828a5263545333608e62ec576af7bcfa50b7972acfd7529fbda436b2f2ac8eabd54f615820213f3
|
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
|
+
## [7.0.14] - 07-10-2016
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Bug in setting `NEO4J_TYPE` (thanks bloomdido / see #1235)
|
11
|
+
|
6
12
|
## [7.0.12] - 06-27-2016
|
7
13
|
|
8
14
|
### Fixed
|
data/lib/neo4j/railtie.rb
CHANGED
@@ -70,11 +70,8 @@ module Neo4j
|
|
70
70
|
end
|
71
71
|
|
72
72
|
def default_session_type
|
73
|
-
|
74
|
-
|
75
|
-
else
|
76
|
-
config_data[:type] || :server_db
|
77
|
-
end.to_sym
|
73
|
+
type = ENV['NEO4J_TYPE'] || config_data[:type] || :server_db
|
74
|
+
type.to_sym
|
78
75
|
end
|
79
76
|
|
80
77
|
def default_session_path
|
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: 7.0.
|
4
|
+
version: 7.0.14
|
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: 2016-07-
|
11
|
+
date: 2016-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|