neo4j-community 1.6.0.alpha.5-java → 1.6.0.alpha.6-java

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.
@@ -5,7 +5,7 @@ module Neo4j
5
5
  module Community
6
6
 
7
7
  def self.jars_root
8
- "#{File.dirname(__FILE__)}/neo4j-community/jars"
8
+ File.join("#{File.dirname(__FILE__)}", "neo4j-community", "jars")
9
9
  end
10
10
 
11
11
  def self.load_jars!
@@ -15,9 +15,8 @@ module Neo4j
15
15
 
16
16
  # This can be used by dependent gems to verify the Database versions have no mismatch.
17
17
  def self.ensure_version!(other, edition)
18
- matching = ::Neo4j::Community::NEO_VERSION == other
19
- return unless matching
20
- raise "Mismatch of Neo4j JAR versions. Already loaded JAR files #{::Neo4j::Community::NEO_VERSION}, neo4j-#{edition}: #{other}."
18
+ return if ::Neo4j::Community::NEO_VERSION == other
19
+ raise "Mismatch of Neo4j JAR versions. Already loaded neo4j-community JAR files '#{::Neo4j::Community::NEO_VERSION}' but neo4j-#{edition}: '#{other}'."
21
20
  end
22
21
 
23
22
  end
@@ -1,6 +1,6 @@
1
1
  module Neo4j
2
2
  module Community
3
- VERSION = "1.6.0.alpha.5"
3
+ VERSION = "1.6.0.alpha.6"
4
4
  NEO_VERSION = "1.6.M02"
5
5
  end
6
6
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j-community
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 6
5
- version: 1.6.0.alpha.5
5
+ version: 1.6.0.alpha.6
6
6
  platform: java
7
7
  authors:
8
8
  - Dmytrii Nagirniak
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2012-01-13 00:00:00 Z
14
+ date: 2012-01-16 00:00:00 Z
15
15
  dependencies: []
16
16
 
17
17
  description: "The Java Jar files for the Neo4j Community, a high performance, fully ACID transactional graph database \xE2\x80\x93 licensed under the GPL, see license - http://neo4j.org/licensing-guide/ "