neo4j 2.2.0.rc1-java → 2.2.1-java
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +12 -0
- data/README.rdoc +15 -22
- data/lib/neo4j/rails/has_n.rb +3 -0
- data/lib/neo4j/rails/identity.rb +1 -2
- data/lib/neo4j/rails/persistence.rb +3 -1
- data/lib/neo4j/rails/relationship_persistence.rb +1 -1
- data/lib/neo4j/rails/relationships/rels_dsl.rb +1 -1
- data/lib/neo4j/rails/relationships/storage.rb +2 -1
- data/lib/neo4j/version.rb +1 -1
- data/lib/neo4j/version.rb~ +3 -0
- data/neo4j.gemspec +1 -1
- metadata +97 -188
- data/lib/person.rb +0 -5
data/CHANGELOG
CHANGED
@@ -1,6 +1,18 @@
|
|
1
|
+
== 2.2.1 / 2012-12-18
|
2
|
+
* Fix for JRuby 1.7.1 and Equal #225
|
3
|
+
* Fix for create nodes and relationship using Cypher (neo4j-core #17)
|
4
|
+
|
5
|
+
== 2.2.0 / 2012-10-02
|
6
|
+
* Using neo4j-cypher gem (1.0.0)
|
7
|
+
* Fix of neo4j-core configuration issue using boolean values #218
|
8
|
+
* Fixed RSpec issue on JRuby 1.7.x #217
|
9
|
+
* Aliased has_many to has_n, #183
|
10
|
+
|
1
11
|
== 2.2.0.rc1 / 2012-09-21
|
2
12
|
* Use neo4j-core and neo4j-wrapper version 2.2.0.rc1
|
3
13
|
* Use the neo4j-cypher gem
|
14
|
+
* Better support for Orm Adapter, #212
|
15
|
+
* Use Cypher query when finder method does not have a lucene index, #210
|
4
16
|
|
5
17
|
== 2.0.1 / 2012-06-06
|
6
18
|
* Use neo4j-core and neo4j-wrapper version 2.0.1
|
data/README.rdoc
CHANGED
@@ -9,28 +9,21 @@ It uses two powerful and mature Java libraries:
|
|
9
9
|
* {Neo4J}[http://www.neo4j.org] - for persistence and traversal of the graph
|
10
10
|
* {Lucene}[http://lucene.apache.org/java/docs/index.html] for querying and indexing.
|
11
11
|
|
12
|
-
== Documentation
|
13
12
|
|
14
|
-
|
13
|
+
It has been tested with Neo4j version 1.8 ( {see here}[https://github.com/andreasronge/neo4j-core/blob/master/neo4j-core.gemspec]) and JRuby 1.6.7 & 1.7.1 (see Travis)
|
14
|
+
|
15
|
+
== Documentation
|
15
16
|
|
16
|
-
* {Blog}[http://blog.jayway.com/2012/05/07/neo4j-rb-2-0-an-overview/]
|
17
17
|
* {Github Wiki}[https://github.com/andreasronge/neo4j/wiki]
|
18
|
+
* {Blog}[http://blog.jayway.com/2012/05/07/neo4j-rb-2-0-an-overview/]
|
18
19
|
* {YARD}[http://rdoc.info/github/andreasronge/neo4j/master/frames]
|
19
20
|
* RSpecs - There are 2023 RSpecs (478/neo4j-core, 425/neo4j-wrapper and 1120/this gem - 2012 April)
|
21
|
+
* {Docs from NeoTechnology}[http://docs.neo4j.org/]
|
20
22
|
|
21
|
-
|
22
|
-
|
23
|
-
* {Guides and API}[http://neo4j.rubyforge.org/guides/index.html]
|
24
|
-
* {RDoc}[http://neo4j.rubyforge.org]
|
25
|
-
* {Blog: Neo4j and Rails 3}[http://blog.jayway.com/2011/03/02/neo4j-rb-1-0-0-and-rails-3/]
|
26
|
-
* {Kvitter Example Application}[https://github.com/andreasronge/kvitter/]
|
27
|
-
|
28
|
-
=== Presentation Materials and other URLs
|
23
|
+
== Example applications
|
29
24
|
|
30
|
-
* {
|
31
|
-
* {
|
32
|
-
* {Nordic Ruby 2010 May 21-23}[http://nordicruby.org/speakers#user_29]
|
33
|
-
* {Docs from NeoTechnology}[http://docs.neo4j.org/]
|
25
|
+
* {The Kvitter Rails 3.2x App}[https://github.com/andreasronge/kvitter] (kvitter = tweets in Swedish)
|
26
|
+
* {Simple Rails 3.0 App}[https://github.com/andreasronge/neo4j-rails-example]
|
34
27
|
|
35
28
|
== Why Neo4j.rb or a Graph Database ?
|
36
29
|
|
@@ -50,7 +43,7 @@ Here are some of the major benefits of Neo4j.rb
|
|
50
43
|
|
51
44
|
== Public API
|
52
45
|
|
53
|
-
The neo4j gem depends on the neo4j-wrapper and neo4j-core gems.
|
46
|
+
The neo4j gem depends on the neo4j-wrapper and neo4j-core gems and neo4j-cypher gem.
|
54
47
|
|
55
48
|
=== neo4j gem
|
56
49
|
|
@@ -99,18 +92,16 @@ Example of creating an Neo4j Application from scratch:
|
|
99
92
|
(make sure you have installed JRuby version >= 1.6.2)
|
100
93
|
|
101
94
|
gem install rails
|
102
|
-
rails new myapp -m http://andreasronge.github.com/neo4j/rails.rb
|
95
|
+
rails new myapp -m http://andreasronge.github.com/neo4j/rails.rb -O
|
103
96
|
cd myapp
|
104
97
|
bundle
|
105
98
|
rails generate scaffold User name:string email:string
|
106
99
|
rails s
|
107
100
|
open a webbrowser: http://localhost:3000/users
|
108
101
|
|
109
|
-
To run it with Tomcat instead of WEBrick
|
110
|
-
|
111
|
-
gem install trinidad
|
112
|
-
trinidad
|
113
102
|
|
103
|
+
The -O flag above means that it will skip active record.
|
104
|
+
For more information, read the {Github Wiki}[https://github.com/andreasronge/neo4j/wiki]
|
114
105
|
|
115
106
|
=== {neo4j-wrapper}[http://github.com/andreasronge/neo4j-wrapper]
|
116
107
|
|
@@ -139,7 +130,7 @@ Example of mapping a ruby class to a node and delaring properties and relationsh
|
|
139
130
|
Person.find("name: andreas").first.name # => 'andreas'
|
140
131
|
|
141
132
|
The Neo4j::NodeMixin and Neo4j::RelationshipMixin is implemented in the {neo4j-wrapper}[http://github.com/andreasronge/neo4j-wrapper] gem
|
142
|
-
|
133
|
+
For more information, read the {Github Wiki}[https://github.com/andreasronge/neo4j/wiki]
|
143
134
|
|
144
135
|
=== neo4j-core gem
|
145
136
|
|
@@ -168,6 +159,8 @@ Example of creating a Neo4j::Node
|
|
168
159
|
|
169
160
|
The Neo4j::Node and Neo4j::Relationship is implemented in the {neo4j-core}[http://github.com/andreasronge/neo4j-core] gem.
|
170
161
|
|
162
|
+
For more information, read the {Github Wiki}[https://github.com/andreasronge/neo4j/wiki]
|
163
|
+
|
171
164
|
== Architecture
|
172
165
|
|
173
166
|
As you seen above, neo4j.rb consists of a three layers API:
|
data/lib/neo4j/rails/has_n.rb
CHANGED
data/lib/neo4j/rails/identity.rb
CHANGED
@@ -160,11 +160,13 @@ module Neo4j
|
|
160
160
|
else
|
161
161
|
true
|
162
162
|
end
|
163
|
+
rescue => e
|
164
|
+
Neo4j::Rails::Transaction.fail if Neo4j::Rails::Transaction.running?
|
165
|
+
raise e
|
163
166
|
ensure
|
164
167
|
@_create_or_updating = nil
|
165
168
|
end
|
166
169
|
|
167
|
-
|
168
170
|
def set_deleted_properties
|
169
171
|
@_deleted = true
|
170
172
|
end
|
@@ -30,7 +30,7 @@ module Neo4j
|
|
30
30
|
# Notice, only persisted relationships will be returned.
|
31
31
|
def to_other(other)
|
32
32
|
raise('node.rels(...).to_other() not allowed on a node that is not persisted') unless @node
|
33
|
-
@node._java_node.rels(@dir).to_other(other)
|
33
|
+
@node._java_node.rels(@dir).to_other(other._java_node)
|
34
34
|
end
|
35
35
|
|
36
36
|
def delete_all
|
@@ -48,7 +48,7 @@ module Neo4j
|
|
48
48
|
def to_other(dir, other)
|
49
49
|
raise('node.rels(...).to_other() not allowed on a node that is not persisted') if @node.new_record?
|
50
50
|
all_relationships(dir).find_all do |rel|
|
51
|
-
rel._other_node(@node) == other
|
51
|
+
rel._other_node(@node) == other._java_node
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
@@ -151,6 +151,7 @@ module Neo4j
|
|
151
151
|
end
|
152
152
|
|
153
153
|
def create_relationship_to(to, dir, attributes=nil)
|
154
|
+
# puts "create_relationship_to #{@node.class}/#{@node.neo_id}, to #{to.class}/#{to.neo_id}"
|
154
155
|
if dir == :outgoing
|
155
156
|
@rel_class.new(@rel_type, @node, to, attributes)
|
156
157
|
else
|
data/lib/neo4j/version.rb
CHANGED
data/neo4j.gemspec
CHANGED
@@ -32,5 +32,5 @@ It comes included with the Apache Lucene document database.
|
|
32
32
|
s.add_dependency('orm_adapter', ">= 0.0.3")
|
33
33
|
s.add_dependency("activemodel", ">= 3.0.0", "< 3.3")
|
34
34
|
s.add_dependency("railties", ">= 3.0.0", "< 3.3")
|
35
|
-
s.add_dependency("neo4j-wrapper", '2.2.
|
35
|
+
s.add_dependency("neo4j-wrapper", '2.2.1')
|
36
36
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
4
|
+
version: 2.2.1
|
5
|
+
prerelease:
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Andreas Ronge
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: orm_adapter
|
@@ -81,18 +81,18 @@ dependencies:
|
|
81
81
|
requirements:
|
82
82
|
- - '='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 2.2.
|
84
|
+
version: 2.2.1
|
85
85
|
none: false
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
88
|
- - '='
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 2.2.
|
90
|
+
version: 2.2.1
|
91
91
|
none: false
|
92
92
|
prerelease: false
|
93
93
|
type: :runtime
|
94
|
-
description:
|
95
|
-
\
|
94
|
+
description: "You can think of Neo4j as a high-performance graph engine with all the\
|
95
|
+
\ features of a mature and robust database.\nThe programmer works with an object-oriented,\
|
96
96
|
\ flexible network structure rather than with strict and static tables \nyet enjoys\
|
97
97
|
\ all the benefits of a fully transactional, enterprise-strength database.\nIt comes\
|
98
98
|
\ included with the Apache Lucene document database.\n"
|
@@ -105,184 +105,90 @@ extensions: []
|
|
105
105
|
extra_rdoc_files:
|
106
106
|
- README.rdoc
|
107
107
|
files:
|
108
|
-
-
|
109
|
-
|
110
|
-
-
|
111
|
-
|
112
|
-
-
|
113
|
-
|
114
|
-
-
|
115
|
-
|
116
|
-
-
|
117
|
-
|
118
|
-
-
|
119
|
-
|
120
|
-
-
|
121
|
-
|
122
|
-
-
|
123
|
-
|
124
|
-
-
|
125
|
-
|
126
|
-
-
|
127
|
-
|
128
|
-
-
|
129
|
-
|
130
|
-
-
|
131
|
-
|
132
|
-
-
|
133
|
-
|
134
|
-
-
|
135
|
-
|
136
|
-
-
|
137
|
-
|
138
|
-
-
|
139
|
-
|
140
|
-
-
|
141
|
-
|
142
|
-
-
|
143
|
-
|
144
|
-
-
|
145
|
-
|
146
|
-
|
147
|
-
-
|
148
|
-
|
149
|
-
-
|
150
|
-
|
151
|
-
-
|
152
|
-
|
153
|
-
-
|
154
|
-
|
155
|
-
-
|
156
|
-
|
157
|
-
-
|
158
|
-
|
159
|
-
-
|
160
|
-
|
161
|
-
|
162
|
-
-
|
163
|
-
|
164
|
-
|
165
|
-
-
|
166
|
-
|
167
|
-
-
|
168
|
-
|
169
|
-
-
|
170
|
-
|
171
|
-
-
|
172
|
-
|
173
|
-
-
|
174
|
-
|
175
|
-
-
|
176
|
-
|
177
|
-
-
|
178
|
-
|
179
|
-
-
|
180
|
-
|
181
|
-
-
|
182
|
-
|
183
|
-
|
184
|
-
-
|
185
|
-
|
186
|
-
-
|
187
|
-
|
188
|
-
-
|
189
|
-
|
190
|
-
-
|
191
|
-
|
192
|
-
- !binary |-
|
193
|
-
bGliL25lbzRqL3JhaWxzL2NhbGxiYWNrcy5yYg==
|
194
|
-
- !binary |-
|
195
|
-
bGliL25lbzRqL3JhaWxzL2NvbHVtbi5yYg==
|
196
|
-
- !binary |-
|
197
|
-
bGliL25lbzRqL3JhaWxzL2NvbXBvc2l0aW9ucy5yYg==
|
198
|
-
- !binary |-
|
199
|
-
bGliL25lbzRqL3JhaWxzL2ZpbmRlcnMucmI=
|
200
|
-
- !binary |-
|
201
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUucmI=
|
202
|
-
- !binary |-
|
203
|
-
bGliL25lbzRqL3JhaWxzL2hhc19uLnJi
|
204
|
-
- !binary |-
|
205
|
-
bGliL25lbzRqL3JhaWxzL2lkZW50aXR5LnJi
|
206
|
-
- !binary |-
|
207
|
-
bGliL25lbzRqL3JhaWxzL21vZGVsLnJi
|
208
|
-
- !binary |-
|
209
|
-
bGliL25lbzRqL3JhaWxzL25lc3RlZF9hdHRyaWJ1dGVzLnJi
|
210
|
-
- !binary |-
|
211
|
-
bGliL25lbzRqL3JhaWxzL25vZGVfcGVyc2lzdGFuY2UucmI=
|
212
|
-
- !binary |-
|
213
|
-
bGliL25lbzRqL3JhaWxzL29ic2VydmVyLnJi
|
214
|
-
- !binary |-
|
215
|
-
bGliL25lbzRqL3JhaWxzL3BlcnNpc3RlbmNlLnJi
|
216
|
-
- !binary |-
|
217
|
-
bGliL25lbzRqL3JhaWxzL3JhY2tfbWlkZGxld2FyZS5yYg==
|
218
|
-
- !binary |-
|
219
|
-
bGliL25lbzRqL3JhaWxzL3JhaWxzLnJi
|
220
|
-
- !binary |-
|
221
|
-
bGliL25lbzRqL3JhaWxzL3JhaWx0aWUucmI=
|
222
|
-
- !binary |-
|
223
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcC5yYg==
|
224
|
-
- !binary |-
|
225
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcF9wZXJzaXN0ZW5jZS5yYg==
|
226
|
-
- !binary |-
|
227
|
-
bGliL25lbzRqL3JhaWxzL3NlcmlhbGl6YXRpb24ucmI=
|
228
|
-
- !binary |-
|
229
|
-
bGliL25lbzRqL3JhaWxzL3RpbWVzdGFtcHMucmI=
|
230
|
-
- !binary |-
|
231
|
-
bGliL25lbzRqL3JhaWxzL3RyYW5zYWN0aW9uLnJi
|
232
|
-
- !binary |-
|
233
|
-
bGliL25lbzRqL3JhaWxzL3R4X21ldGhvZHMucmI=
|
234
|
-
- !binary |-
|
235
|
-
bGliL25lbzRqL3JhaWxzL3ZhbGlkYXRpb25zLnJi
|
236
|
-
- !binary |-
|
237
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvaGFfY29uc29sZS5yYg==
|
238
|
-
- !binary |-
|
239
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvcmFpbHRpZS5yYg==
|
240
|
-
- !binary |-
|
241
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvem9va2VlcGVyL2NsZWFuLnNo
|
242
|
-
- !binary |-
|
243
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvem9va2VlcGVyL3N0YXJ0X3pv
|
244
|
-
b2tlZXBlci5zaA==
|
245
|
-
- !binary |-
|
246
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvem9va2VlcGVyL3pvb2tlZXBl
|
247
|
-
ci5yYg==
|
248
|
-
- !binary |-
|
249
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvem9va2VlcGVyL2NvbmYvc2Vy
|
250
|
-
dmVyMS5jZmc=
|
251
|
-
- !binary |-
|
252
|
-
bGliL25lbzRqL3JhaWxzL2hhX2NvbnNvbGUvem9va2VlcGVyL2RhdGEvem9v
|
253
|
-
a2VlcGVyMS9teWlk
|
254
|
-
- !binary |-
|
255
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcHMvbm9kZV9kc2wucmI=
|
256
|
-
- !binary |-
|
257
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcHMvcmVsYXRpb25zaGlwcy5y
|
258
|
-
Yg==
|
259
|
-
- !binary |-
|
260
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcHMvcmVsc19kc2wucmI=
|
261
|
-
- !binary |-
|
262
|
-
bGliL25lbzRqL3JhaWxzL3JlbGF0aW9uc2hpcHMvc3RvcmFnZS5yYg==
|
263
|
-
- !binary |-
|
264
|
-
bGliL25lbzRqL3JhaWxzL3ZhbGlkYXRpb25zL2Fzc29jaWF0ZWQucmI=
|
265
|
-
- !binary |-
|
266
|
-
bGliL25lbzRqL3JhaWxzL3ZhbGlkYXRpb25zL25vbl9uaWwucmI=
|
267
|
-
- !binary |-
|
268
|
-
bGliL25lbzRqL3JhaWxzL3ZhbGlkYXRpb25zL3VuaXF1ZW5lc3MucmI=
|
269
|
-
- !binary |-
|
270
|
-
bGliL25lbzRqL3JhaWxzL3ZlcnNpb25pbmcvdmVyc2lvbmluZy5yYg==
|
271
|
-
- !binary |-
|
272
|
-
bGliL25lbzRqL3Rhc2tzL25lbzRqLnJi
|
273
|
-
- !binary |-
|
274
|
-
bGliL25lbzRqL3Rhc2tzL3VwZ3JhZGVfdjIvdXBncmFkZV92Mi5yYWtl
|
275
|
-
- !binary |-
|
276
|
-
bGliL25lbzRqL3Rhc2tzL3VwZ3JhZGVfdjIvbGliL3VwZ3JhZGVfdjIucmI=
|
277
|
-
- !binary |-
|
278
|
-
bGliL25lbzRqL3R5cGVfY29udmVydGVycy9zZXJpYWxpemVfY29udmVydGVy
|
279
|
-
LnJi
|
280
|
-
- !binary |-
|
281
|
-
bGliL29ybV9hZGFwdGVyL2FkYXB0ZXJzL25lbzRqLnJi
|
282
|
-
- !binary |-
|
283
|
-
Y29uZmlnL2xvY2FsZXMvZW4ueW1s
|
284
|
-
- !binary |-
|
285
|
-
Y29uZmlnL25lbzRqL2NvbmZpZy55bWw=
|
108
|
+
- bin/neo4j-jars
|
109
|
+
- bin/neo4j-shell
|
110
|
+
- bin/neo4j-upgrade
|
111
|
+
- lib/neo4j.rb
|
112
|
+
- lib/db/active_tx_log
|
113
|
+
- lib/db/messages.log
|
114
|
+
- lib/db/neostore
|
115
|
+
- lib/db/neostore.id
|
116
|
+
- lib/db/neostore.nodestore.db
|
117
|
+
- lib/db/neostore.nodestore.db.id
|
118
|
+
- lib/db/neostore.propertystore.db
|
119
|
+
- lib/db/neostore.propertystore.db.arrays
|
120
|
+
- lib/db/neostore.propertystore.db.arrays.id
|
121
|
+
- lib/db/neostore.propertystore.db.id
|
122
|
+
- lib/db/neostore.propertystore.db.index
|
123
|
+
- lib/db/neostore.propertystore.db.index.id
|
124
|
+
- lib/db/neostore.propertystore.db.index.keys
|
125
|
+
- lib/db/neostore.propertystore.db.index.keys.id
|
126
|
+
- lib/db/neostore.propertystore.db.strings
|
127
|
+
- lib/db/neostore.propertystore.db.strings.id
|
128
|
+
- lib/db/neostore.relationshipstore.db
|
129
|
+
- lib/db/neostore.relationshipstore.db.id
|
130
|
+
- lib/db/neostore.relationshiptypestore.db
|
131
|
+
- lib/db/neostore.relationshiptypestore.db.id
|
132
|
+
- lib/db/neostore.relationshiptypestore.db.names
|
133
|
+
- lib/db/neostore.relationshiptypestore.db.names.id
|
134
|
+
- lib/db/nioneo_logical.log.active
|
135
|
+
- lib/db/nioneo_logical.log.v0
|
136
|
+
- lib/db/tm_tx_log.1
|
137
|
+
- lib/db/index/lucene-store.db
|
138
|
+
- lib/db/index/lucene.log.active
|
139
|
+
- lib/db/index/lucene.log.v0
|
140
|
+
- lib/generators/neo4j.rb
|
141
|
+
- lib/generators/neo4j/model/model_generator.rb
|
142
|
+
- lib/generators/neo4j/model/templates/model.erb
|
143
|
+
- lib/neo4j/paginated.rb
|
144
|
+
- lib/neo4j/version.rb
|
145
|
+
- lib/neo4j/version.rb~
|
146
|
+
- lib/neo4j/rails/accept_id.rb
|
147
|
+
- lib/neo4j/rails/attributes.rb
|
148
|
+
- lib/neo4j/rails/callbacks.rb
|
149
|
+
- lib/neo4j/rails/column.rb
|
150
|
+
- lib/neo4j/rails/compositions.rb
|
151
|
+
- lib/neo4j/rails/finders.rb
|
152
|
+
- lib/neo4j/rails/ha_console.rb
|
153
|
+
- lib/neo4j/rails/has_n.rb
|
154
|
+
- lib/neo4j/rails/identity.rb
|
155
|
+
- lib/neo4j/rails/model.rb
|
156
|
+
- lib/neo4j/rails/nested_attributes.rb
|
157
|
+
- lib/neo4j/rails/node_persistance.rb
|
158
|
+
- lib/neo4j/rails/observer.rb
|
159
|
+
- lib/neo4j/rails/persistence.rb
|
160
|
+
- lib/neo4j/rails/rack_middleware.rb
|
161
|
+
- lib/neo4j/rails/rails.rb
|
162
|
+
- lib/neo4j/rails/railtie.rb
|
163
|
+
- lib/neo4j/rails/relationship.rb
|
164
|
+
- lib/neo4j/rails/relationship_persistence.rb
|
165
|
+
- lib/neo4j/rails/serialization.rb
|
166
|
+
- lib/neo4j/rails/timestamps.rb
|
167
|
+
- lib/neo4j/rails/transaction.rb
|
168
|
+
- lib/neo4j/rails/tx_methods.rb
|
169
|
+
- lib/neo4j/rails/validations.rb
|
170
|
+
- lib/neo4j/rails/ha_console/ha_console.rb
|
171
|
+
- lib/neo4j/rails/ha_console/railtie.rb
|
172
|
+
- lib/neo4j/rails/ha_console/zookeeper/clean.sh
|
173
|
+
- lib/neo4j/rails/ha_console/zookeeper/start_zookeeper.sh
|
174
|
+
- lib/neo4j/rails/ha_console/zookeeper/zookeeper.rb
|
175
|
+
- lib/neo4j/rails/ha_console/zookeeper/conf/server1.cfg
|
176
|
+
- lib/neo4j/rails/ha_console/zookeeper/data/zookeeper1/myid
|
177
|
+
- lib/neo4j/rails/relationships/node_dsl.rb
|
178
|
+
- lib/neo4j/rails/relationships/relationships.rb
|
179
|
+
- lib/neo4j/rails/relationships/rels_dsl.rb
|
180
|
+
- lib/neo4j/rails/relationships/storage.rb
|
181
|
+
- lib/neo4j/rails/validations/associated.rb
|
182
|
+
- lib/neo4j/rails/validations/non_nil.rb
|
183
|
+
- lib/neo4j/rails/validations/uniqueness.rb
|
184
|
+
- lib/neo4j/rails/versioning/versioning.rb
|
185
|
+
- lib/neo4j/tasks/neo4j.rb
|
186
|
+
- lib/neo4j/tasks/upgrade_v2/upgrade_v2.rake
|
187
|
+
- lib/neo4j/tasks/upgrade_v2/lib/upgrade_v2.rb
|
188
|
+
- lib/neo4j/type_converters/serialize_converter.rb
|
189
|
+
- lib/orm_adapter/adapters/neo4j.rb
|
190
|
+
- config/locales/en.yml
|
191
|
+
- config/neo4j/config.yml
|
286
192
|
- README.rdoc
|
287
193
|
- CHANGELOG
|
288
194
|
- CONTRIBUTORS
|
@@ -309,10 +215,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
309
215
|
none: false
|
310
216
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
311
217
|
requirements:
|
312
|
-
- - !
|
313
|
-
Pg==
|
218
|
+
- - ! '>='
|
314
219
|
- !ruby/object:Gem::Version
|
315
|
-
|
220
|
+
segments:
|
221
|
+
- 0
|
222
|
+
version: !binary |-
|
223
|
+
MA==
|
224
|
+
hash: 2
|
316
225
|
none: false
|
317
226
|
requirements: []
|
318
227
|
rubyforge_project: neo4j
|