neo4j 6.0.0.alpha.1 → 6.0.0.alpha.2

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
  SHA1:
3
- metadata.gz: cb4da367af9c6c6253c1d7f744ea39807a8c15b7
4
- data.tar.gz: 17b6b00c6b522b83aa27ca9ba1780542a15ae8bc
3
+ metadata.gz: 40cad7a0b402768974f1cfa94e429cab6ab052d9
4
+ data.tar.gz: f64ed69a5270e3acec6e30001ef330af13a2bcc1
5
5
  SHA512:
6
- metadata.gz: 97d79f821bf11cb74a5b53a964a5796c74a266775a2cebc6669bfa104f727dddf654fca104cc2c1dcd3cf9eb6f6e2babb8f0a625144bf360383f5343f6f6c76f
7
- data.tar.gz: f2c614f9b21c87942f0f50ae0bf0131edc3a6a41023d551594d1cb8e0cf7f7dca7480d2ca8fdd4e6da9f4a1333b9e376a547572b87ae9d4e8e81736dd8e1a769
6
+ metadata.gz: 7a6de685b001381d41e4302d2c3771c0f1d02cab9af8ca2c2c79f2f1c6fdb3ad93df8f4c619c102f0c3659a32df6197c9ca5380eb1febcc576b68ba3fc77ffb7
7
+ data.tar.gz: a221e15d1366df5b7b4c5a7fb3da3d4e62d596c6a3a91e4be1d979b60df05e8220bf4511a9ffb4ed799d5c2da422aadfab907432236e8dcd9500de70c94da36f
@@ -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
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.0.0.alpha.1'
2
+ VERSION = '6.0.0.alpha.2'
3
3
  end
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.1
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-12 00:00:00.000000000 Z
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.6
329
+ rubygems_version: 2.4.5.1
330
330
  signing_key:
331
331
  specification_version: 4
332
332
  summary: A graph database for Ruby