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.
- data/lib/neo4j-community.rb +3 -4
- data/lib/neo4j-community/version.rb +1 -1
- metadata +2 -2
data/lib/neo4j-community.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Neo4j
|
|
|
5
5
|
module Community
|
|
6
6
|
|
|
7
7
|
def self.jars_root
|
|
8
|
-
"#{File.dirname(__FILE__)}
|
|
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
|
-
|
|
19
|
-
|
|
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
|
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
|
+
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-
|
|
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/ "
|