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 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
- ==== Version >= 2.0
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
- ==== Version < 2.0.alpha.5
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
- * {JRubyConf 2012 May}[http://jrubyconf.com/#speakers]
31
- * {Presentation: RailsConf 2011}[http://andreasronge.github.com/neo4j-railsconf.pdf]
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:
@@ -63,6 +63,9 @@ module Neo4j
63
63
  define_has_n_methods_for(args.first, options)
64
64
  end
65
65
 
66
+
67
+ alias_method :has_many, :has_n
68
+
66
69
  # Declares ONE incoming or outgoing relationship
67
70
  #
68
71
  # @example
@@ -15,10 +15,9 @@ module Neo4j
15
15
  end
16
16
 
17
17
  def ==(other)
18
- new? ? self.__id__ == other.__id__ : _java_entity == (other)
18
+ new? ? self.__id__ == other.__id__ : super(other)
19
19
  end
20
20
 
21
-
22
21
  end
23
22
  end
24
23
  end
@@ -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
@@ -44,7 +44,7 @@ module Neo4j
44
44
  if persisted?
45
45
  _java_rel._other_node(node._java_entity)
46
46
  else
47
- @_start_node == (node._java_entity || node) ? @_end_node : @_start_node
47
+ @_start_node == node ? @_end_node : @_start_node
48
48
  end
49
49
  end
50
50
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = "2.2.0.rc1"
2
+ VERSION = "2.2.1"
3
3
  end
@@ -0,0 +1,3 @@
1
+ module Neo4j
2
+ VERSION = "2.2.0.rc1"
3
+ end
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.0.rc1')
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
- prerelease: 6
5
- version: 2.2.0.rc1
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-09-21 00:00:00.000000000 Z
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.0.rc1
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.0.rc1
90
+ version: 2.2.1
91
91
  none: false
92
92
  prerelease: false
93
93
  type: :runtime
94
- description: ! "You can think of Neo4j as a high-performance graph engine with all\
95
- \ the features of a mature and robust database.\nThe programmer works with an object-oriented,\
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
- - !binary |-
109
- YmluL25lbzRqLWphcnM=
110
- - !binary |-
111
- YmluL25lbzRqLXNoZWxs
112
- - !binary |-
113
- YmluL25lbzRqLXVwZ3JhZGU=
114
- - !binary |-
115
- bGliL25lbzRqLnJi
116
- - !binary |-
117
- bGliL3BlcnNvbi5yYg==
118
- - !binary |-
119
- bGliL2RiL2FjdGl2ZV90eF9sb2c=
120
- - !binary |-
121
- bGliL2RiL21lc3NhZ2VzLmxvZw==
122
- - !binary |-
123
- bGliL2RiL25lb3N0b3Jl
124
- - !binary |-
125
- bGliL2RiL25lb3N0b3JlLmlk
126
- - !binary |-
127
- bGliL2RiL25lb3N0b3JlLm5vZGVzdG9yZS5kYg==
128
- - !binary |-
129
- bGliL2RiL25lb3N0b3JlLm5vZGVzdG9yZS5kYi5pZA==
130
- - !binary |-
131
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGI=
132
- - !binary |-
133
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuYXJyYXlz
134
- - !binary |-
135
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuYXJyYXlzLmlk
136
- - !binary |-
137
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaWQ=
138
- - !binary |-
139
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXg=
140
- - !binary |-
141
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXguaWQ=
142
- - !binary |-
143
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXgua2V5cw==
144
- - !binary |-
145
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXgua2V5cy5p
146
- ZA==
147
- - !binary |-
148
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuc3RyaW5ncw==
149
- - !binary |-
150
- bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuc3RyaW5ncy5pZA==
151
- - !binary |-
152
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHN0b3JlLmRi
153
- - !binary |-
154
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHN0b3JlLmRiLmlk
155
- - !binary |-
156
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYg==
157
- - !binary |-
158
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5pZA==
159
- - !binary |-
160
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5uYW1l
161
- cw==
162
- - !binary |-
163
- bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5uYW1l
164
- cy5pZA==
165
- - !binary |-
166
- bGliL2RiL25pb25lb19sb2dpY2FsLmxvZy5hY3RpdmU=
167
- - !binary |-
168
- bGliL2RiL25pb25lb19sb2dpY2FsLmxvZy52MA==
169
- - !binary |-
170
- bGliL2RiL3RtX3R4X2xvZy4x
171
- - !binary |-
172
- bGliL2RiL2luZGV4L2x1Y2VuZS1zdG9yZS5kYg==
173
- - !binary |-
174
- bGliL2RiL2luZGV4L2x1Y2VuZS5sb2cuYWN0aXZl
175
- - !binary |-
176
- bGliL2RiL2luZGV4L2x1Y2VuZS5sb2cudjA=
177
- - !binary |-
178
- bGliL2dlbmVyYXRvcnMvbmVvNGoucmI=
179
- - !binary |-
180
- bGliL2dlbmVyYXRvcnMvbmVvNGovbW9kZWwvbW9kZWxfZ2VuZXJhdG9yLnJi
181
- - !binary |-
182
- bGliL2dlbmVyYXRvcnMvbmVvNGovbW9kZWwvdGVtcGxhdGVzL21vZGVsLmVy
183
- Yg==
184
- - !binary |-
185
- bGliL25lbzRqL3BhZ2luYXRlZC5yYg==
186
- - !binary |-
187
- bGliL25lbzRqL3ZlcnNpb24ucmI=
188
- - !binary |-
189
- bGliL25lbzRqL3JhaWxzL2FjY2VwdF9pZC5yYg==
190
- - !binary |-
191
- bGliL25lbzRqL3JhaWxzL2F0dHJpYnV0ZXMucmI=
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
- - - !binary |-
313
- Pg==
218
+ - - ! '>='
314
219
  - !ruby/object:Gem::Version
315
- version: 1.3.1
220
+ segments:
221
+ - 0
222
+ version: !binary |-
223
+ MA==
224
+ hash: 2
316
225
  none: false
317
226
  requirements: []
318
227
  rubyforge_project: neo4j
data/lib/person.rb DELETED
@@ -1,5 +0,0 @@
1
- load 'neo4j'
2
-
3
- class Person < Neo4j::Rails::Model
4
- end
5
-