neo4j 1.1.3-java → 1.1.4-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/CHANGELOG +3 -0
- data/lib/neo4j/version.rb +1 -1
- data/neo4j.gemspec +3 -2
- metadata +10 -7
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
== 1.1.4 / 2011-08-10
|
|
2
|
+
* Fixed dependency to will_paginate, locked to 3.0.pre4 (newly released 3.0.0 does not work yet with neo4j.rb)
|
|
3
|
+
|
|
1
4
|
== 1.1.3 / 2011-08-09
|
|
2
5
|
* real recursive rule to the top class, subclasses with rules did not work (Frédéric Vanclef)
|
|
3
6
|
* BUG: not able to create array properties on relationships (Pere Urbon)
|
data/lib/neo4j/version.rb
CHANGED
data/neo4j.gemspec
CHANGED
|
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.summary = "A graph database for JRuby"
|
|
18
18
|
s.description = <<-EOF
|
|
19
19
|
You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database.
|
|
20
|
-
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
|
|
20
|
+
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
|
|
21
|
+
yet enjoys all the benefits of a fully transactional, enterprise-strength database.
|
|
21
22
|
It comes included with the Apache Lucene document database.
|
|
22
23
|
EOF
|
|
23
24
|
|
|
@@ -30,6 +31,6 @@ It comes included with the Apache Lucene document database.
|
|
|
30
31
|
|
|
31
32
|
s.add_dependency('orm_adapter', ">= 0.0.3")
|
|
32
33
|
s.add_dependency("activemodel", ">= 3.0.0")
|
|
33
|
-
s.add_dependency("will_paginate", ["
|
|
34
|
+
s.add_dependency("will_paginate", ["3.0.pre4"]) # should be ~>3.0 but it's API has changed '
|
|
34
35
|
s.add_dependency("railties", ">= 3.0.0")
|
|
35
36
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: neo4j
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.1.
|
|
5
|
+
version: 1.1.4
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- Andreas Ronge
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-08-
|
|
13
|
+
date: 2011-08-10 00:00:00 +02:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -41,9 +41,9 @@ dependencies:
|
|
|
41
41
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
42
42
|
none: false
|
|
43
43
|
requirements:
|
|
44
|
-
- -
|
|
44
|
+
- - "="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.0.
|
|
46
|
+
version: 3.0.pre4
|
|
47
47
|
type: :runtime
|
|
48
48
|
version_requirements: *id003
|
|
49
49
|
- !ruby/object:Gem::Dependency
|
|
@@ -57,9 +57,12 @@ dependencies:
|
|
|
57
57
|
version: 3.0.0
|
|
58
58
|
type: :runtime
|
|
59
59
|
version_requirements: *id004
|
|
60
|
-
description:
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
description: |
|
|
61
|
+
You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database.
|
|
62
|
+
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
|
|
63
|
+
yet enjoys all the benefits of a fully transactional, enterprise-strength database.
|
|
64
|
+
It comes included with the Apache Lucene document database.
|
|
65
|
+
|
|
63
66
|
email: andreas.ronge@gmail.com
|
|
64
67
|
executables:
|
|
65
68
|
- neo4j-shell
|