neo4j 6.0.0.alpha.1 → 6.0.0.alpha.2
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 -2
- data/lib/neo4j/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40cad7a0b402768974f1cfa94e429cab6ab052d9
|
|
4
|
+
data.tar.gz: f64ed69a5270e3acec6e30001ef330af13a2bcc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a6de685b001381d41e4302d2c3771c0f1d02cab9af8ca2c2c79f2f1c6fdb3ad93df8f4c619c102f0c3659a32df6197c9ca5380eb1febcc576b68ba3fc77ffb7
|
|
7
|
+
data.tar.gz: a221e15d1366df5b7b4c5a7fb3da3d4e62d596c6a3a91e4be1d979b60df05e8220bf4511a9ffb4ed799d5c2da422aadfab907432236e8dcd9500de70c94da36f
|
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.0.alpha.2] - 10-14-2015
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- Look for ENV variables for Neo4j URL / path for Rails apps
|
|
11
|
+
|
|
6
12
|
## [6.0.0.alpha.1] - 10-12-2015
|
|
7
13
|
|
|
8
14
|
### Changed
|
data/lib/neo4j/railtie.rb
CHANGED
|
@@ -34,8 +34,8 @@ module Neo4j
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def setup_config_defaults!(cfg)
|
|
37
|
-
cfg.session_type ||= :server_db
|
|
38
|
-
cfg.session_path ||= 'http://localhost:7474'
|
|
37
|
+
cfg.session_type ||= ENV['NEO4J_PATH'] ? :embedded_db : :server_db
|
|
38
|
+
cfg.session_path ||= ENV['NEO4J_URL'] || ENV['NEO4J_PATH'] || 'http://localhost:7474'
|
|
39
39
|
cfg.session_options ||= {}
|
|
40
40
|
cfg.sessions ||= []
|
|
41
41
|
|
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.0.alpha.
|
|
4
|
+
version: 6.0.0.alpha.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-10-
|
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|
|
@@ -326,7 +326,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
326
326
|
version: 1.3.1
|
|
327
327
|
requirements: []
|
|
328
328
|
rubyforge_project: neo4j
|
|
329
|
-
rubygems_version: 2.4.
|
|
329
|
+
rubygems_version: 2.4.5.1
|
|
330
330
|
signing_key:
|
|
331
331
|
specification_version: 4
|
|
332
332
|
summary: A graph database for Ruby
|