neo4j 2.0.1-java → 2.2.0-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.
Files changed (55) hide show
  1. data/CHANGELOG +12 -0
  2. data/Gemfile +0 -3
  3. data/README.rdoc +12 -22
  4. data/lib/db/index/lucene-store.db +0 -0
  5. data/lib/db/index/lucene.log.active +0 -0
  6. data/lib/db/index/{lucene.log.1 → lucene.log.v0} +0 -0
  7. data/lib/db/messages.log +170 -162
  8. data/lib/db/neostore +0 -0
  9. data/lib/db/neostore.id +0 -0
  10. data/lib/db/neostore.nodestore.db +0 -0
  11. data/lib/db/neostore.nodestore.db.id +0 -0
  12. data/lib/db/neostore.propertystore.db +0 -0
  13. data/lib/db/neostore.propertystore.db.arrays +0 -0
  14. data/lib/db/neostore.propertystore.db.arrays.id +0 -0
  15. data/lib/db/neostore.propertystore.db.id +0 -0
  16. data/lib/db/neostore.propertystore.db.index +0 -0
  17. data/lib/db/neostore.propertystore.db.index.id +0 -0
  18. data/lib/db/neostore.propertystore.db.index.keys +0 -0
  19. data/lib/db/neostore.propertystore.db.index.keys.id +0 -0
  20. data/lib/db/neostore.propertystore.db.strings +0 -0
  21. data/lib/db/neostore.propertystore.db.strings.id +0 -0
  22. data/lib/db/neostore.relationshipstore.db +0 -0
  23. data/lib/db/neostore.relationshipstore.db.id +0 -0
  24. data/lib/db/neostore.relationshiptypestore.db +0 -0
  25. data/lib/db/neostore.relationshiptypestore.db.id +0 -0
  26. data/lib/db/neostore.relationshiptypestore.db.names +0 -0
  27. data/lib/db/neostore.relationshiptypestore.db.names.id +0 -0
  28. data/lib/db/nioneo_logical.log.active +0 -0
  29. data/lib/db/nioneo_logical.log.v0 +0 -0
  30. data/lib/db/tm_tx_log.1 +0 -0
  31. data/lib/neo4j/rails/attributes.rb +6 -3
  32. data/lib/neo4j/rails/column.rb +26 -0
  33. data/lib/neo4j/rails/finders.rb +48 -4
  34. data/lib/{db/lock → neo4j/rails/ha_console.rb} +0 -0
  35. data/lib/neo4j/rails/ha_console/ha_console.rb +68 -0
  36. data/lib/neo4j/rails/ha_console/railtie.rb +21 -0
  37. data/lib/neo4j/rails/ha_console/zookeeper/clean.sh +4 -0
  38. data/lib/neo4j/rails/ha_console/zookeeper/conf/server1.cfg +11 -0
  39. data/lib/neo4j/rails/ha_console/zookeeper/data/zookeeper1/myid +1 -0
  40. data/lib/neo4j/rails/ha_console/zookeeper/start_zookeeper.sh +17 -0
  41. data/lib/neo4j/rails/ha_console/zookeeper/zookeeper.rb +62 -0
  42. data/lib/neo4j/rails/has_n.rb +3 -0
  43. data/lib/neo4j/rails/persistence.rb +3 -1
  44. data/lib/neo4j/rails/rails.rb +2 -1
  45. data/lib/neo4j/version.rb +1 -1
  46. data/lib/neo4j/version.rb~ +3 -0
  47. data/lib/orm_adapter/adapters/neo4j.rb +52 -5
  48. data/neo4j.gemspec +1 -1
  49. metadata +311 -186
  50. data/bin/neo4j-shell~ +0 -108
  51. data/lib/Gemfile~ +0 -3
  52. data/lib/config2.yml~ +0 -86
  53. data/lib/db/nioneo_logical.log.1 +0 -0
  54. data/lib/perf.rb~ +0 -36
  55. data/lib/test.rb~ +0 -2
@@ -0,0 +1,3 @@
1
+ module Neo4j
2
+ VERSION = "2.2.0.rc1"
3
+ end
@@ -32,19 +32,66 @@ module Neo4j
32
32
  end
33
33
 
34
34
  # Find the first instance matching conditions
35
- def find_first(conditions)
36
- klass.first(conditions)
35
+ def find_first(options = {})
36
+ conditions, order = extract_conditions!(options)
37
+ if !order.empty?
38
+ find_with_order(conditions, order).first
39
+ else
40
+ klass.first(conditions)
41
+ end
37
42
  end
38
43
 
44
+
39
45
  # Find all models matching conditions
40
- def find_all(conditions)
41
- klass.all(conditions)
46
+ def find_all(options = {})
47
+ conditions, order, limit, offset = extract_conditions!(options)
48
+ result = if !order.empty?
49
+ find_with_order(conditions, order)
50
+ else
51
+ klass.all(conditions)
52
+ end
53
+
54
+ if limit && offset
55
+ result.drop(offset).first(limit)
56
+ elsif limit
57
+ result.first(limit)
58
+ else
59
+ result.to_a
60
+ end
61
+
42
62
  end
43
63
 
44
64
  # Create a model using attributes
45
- def create!(attributes)
65
+ def create!(attributes = {})
46
66
  klass.create!(attributes)
47
67
  end
68
+
69
+ # @see OrmAdapter::Base#destroy
70
+ def destroy(object)
71
+ object.destroy && true if valid_object?(object)
72
+ end
73
+
74
+ private
75
+
76
+ def find_with_order(conditions, order)
77
+ conditions = wild_card_condition if conditions.nil? || conditions.empty?
78
+
79
+ result = klass.all(conditions)
80
+ order.inject(result) do |r,spec|
81
+ if spec.is_a?(Array)
82
+ spec[1]==:desc ? r.desc(spec[0]) : r.asc(spec[0])
83
+ else
84
+ r.asc(spec)
85
+ end
86
+ end
87
+ end
88
+
89
+ def wild_card_condition
90
+ index_key = klass._decl_props.keys.find{|k| klass.index?(k) }
91
+ raise "Can't perform a order query when there is no lucene index (try cypher or declare an index) on #{klass}" unless index_key
92
+ "#{index_key}: *"
93
+ end
94
+
48
95
  end
49
96
  end
50
97
  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.0.1')
35
+ s.add_dependency("neo4j-wrapper", '2.2.0')
36
36
  end
metadata CHANGED
@@ -1,201 +1,326 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 2.0.1
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 2.2.0
6
6
  platform: java
7
- authors:
8
- - Andreas Ronge
9
- autorequire:
7
+ authors:
8
+ - Andreas Ronge
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2012-06-07 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: orm_adapter
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 0.0.3
24
- type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: activemodel
28
- prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
30
- none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: 3.0.0
35
- - - <
36
- - !ruby/object:Gem::Version
37
- version: "3.3"
38
- type: :runtime
39
- version_requirements: *id002
40
- - !ruby/object:Gem::Dependency
41
- name: railties
42
- prerelease: false
43
- requirement: &id003 !ruby/object:Gem::Requirement
44
- none: false
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: 3.0.0
49
- - - <
50
- - !ruby/object:Gem::Version
51
- version: "3.3"
52
- type: :runtime
53
- version_requirements: *id003
54
- - !ruby/object:Gem::Dependency
55
- name: neo4j-wrapper
56
- prerelease: false
57
- requirement: &id004 !ruby/object:Gem::Requirement
58
- none: false
59
- requirements:
60
- - - "="
61
- - !ruby/object:Gem::Version
62
- version: 2.0.1
63
- type: :runtime
64
- version_requirements: *id004
65
- description: |
66
- You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database.
67
- The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
68
- yet enjoys all the benefits of a fully transactional, enterprise-strength database.
69
- It comes included with the Apache Lucene document database.
70
-
12
+ date: 2012-10-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: orm_adapter
16
+ version_requirements: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ! '>='
19
+ - !ruby/object:Gem::Version
20
+ version: 0.0.3
21
+ none: false
22
+ requirement: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.3
27
+ none: false
28
+ prerelease: false
29
+ type: :runtime
30
+ - !ruby/object:Gem::Dependency
31
+ name: activemodel
32
+ version_requirements: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ! '>='
35
+ - !ruby/object:Gem::Version
36
+ version: 3.0.0
37
+ - - !binary |-
38
+ PA==
39
+ - !ruby/object:Gem::Version
40
+ version: '3.3'
41
+ none: false
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: 3.0.0
47
+ - - !binary |-
48
+ PA==
49
+ - !ruby/object:Gem::Version
50
+ version: '3.3'
51
+ none: false
52
+ prerelease: false
53
+ type: :runtime
54
+ - !ruby/object:Gem::Dependency
55
+ name: railties
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: 3.0.0
61
+ - - !binary |-
62
+ PA==
63
+ - !ruby/object:Gem::Version
64
+ version: '3.3'
65
+ none: false
66
+ requirement: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: 3.0.0
71
+ - - !binary |-
72
+ PA==
73
+ - !ruby/object:Gem::Version
74
+ version: '3.3'
75
+ none: false
76
+ prerelease: false
77
+ type: :runtime
78
+ - !ruby/object:Gem::Dependency
79
+ name: neo4j-wrapper
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - '='
83
+ - !ruby/object:Gem::Version
84
+ version: 2.2.0
85
+ none: false
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - '='
89
+ - !ruby/object:Gem::Version
90
+ version: 2.2.0
91
+ none: false
92
+ prerelease: false
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,\
96
+ \ flexible network structure rather than with strict and static tables \nyet enjoys\
97
+ \ all the benefits of a fully transactional, enterprise-strength database.\nIt comes\
98
+ \ included with the Apache Lucene document database.\n"
71
99
  email: andreas.ronge@gmail.com
72
- executables:
73
- - neo4j-shell
74
- - neo4j-jars
75
- - neo4j-upgrade
100
+ executables:
101
+ - neo4j-shell
102
+ - neo4j-jars
103
+ - neo4j-upgrade
76
104
  extensions: []
77
-
78
- extra_rdoc_files:
79
- - README.rdoc
80
- files:
81
- - bin/neo4j-jars
82
- - bin/neo4j-shell
83
- - bin/neo4j-shell~
84
- - bin/neo4j-upgrade
85
- - lib/neo4j.rb
86
- - lib/Gemfile~
87
- - lib/test.rb~
88
- - lib/config2.yml~
89
- - lib/perf.rb~
90
- - lib/generators/neo4j.rb
91
- - lib/generators/neo4j/model/model_generator.rb
92
- - lib/generators/neo4j/model/templates/model.erb
93
- - lib/orm_adapter/adapters/neo4j.rb
94
- - lib/neo4j/paginated.rb
95
- - lib/neo4j/version.rb
96
- - lib/neo4j/type_converters/serialize_converter.rb
97
- - lib/neo4j/tasks/neo4j.rb
98
- - lib/neo4j/tasks/upgrade_v2/upgrade_v2.rake
99
- - lib/neo4j/tasks/upgrade_v2/lib/upgrade_v2.rb
100
- - lib/neo4j/rails/attributes.rb
101
- - lib/neo4j/rails/rack_middleware.rb
102
- - lib/neo4j/rails/model.rb
103
- - lib/neo4j/rails/validations.rb
104
- - lib/neo4j/rails/identity.rb
105
- - lib/neo4j/rails/persistence.rb
106
- - lib/neo4j/rails/node_persistance.rb
107
- - lib/neo4j/rails/serialization.rb
108
- - lib/neo4j/rails/railtie.rb
109
- - lib/neo4j/rails/rails.rb
110
- - lib/neo4j/rails/relationship_persistence.rb
111
- - lib/neo4j/rails/observer.rb
112
- - lib/neo4j/rails/nested_attributes.rb
113
- - lib/neo4j/rails/transaction.rb
114
- - lib/neo4j/rails/timestamps.rb
115
- - lib/neo4j/rails/callbacks.rb
116
- - lib/neo4j/rails/has_n.rb
117
- - lib/neo4j/rails/tx_methods.rb
118
- - lib/neo4j/rails/accept_id.rb
119
- - lib/neo4j/rails/finders.rb
120
- - lib/neo4j/rails/relationship.rb
121
- - lib/neo4j/rails/compositions.rb
122
- - lib/neo4j/rails/relationships/rels_dsl.rb
123
- - lib/neo4j/rails/relationships/node_dsl.rb
124
- - lib/neo4j/rails/relationships/relationships.rb
125
- - lib/neo4j/rails/relationships/storage.rb
126
- - lib/neo4j/rails/versioning/versioning.rb
127
- - lib/neo4j/rails/validations/associated.rb
128
- - lib/neo4j/rails/validations/uniqueness.rb
129
- - lib/neo4j/rails/validations/non_nil.rb
130
- - lib/db/neostore.relationshiptypestore.db.names
131
- - lib/db/neostore.id
132
- - lib/db/neostore.relationshiptypestore.db.names.id
133
- - lib/db/neostore.nodestore.db.id
134
- - lib/db/nioneo_logical.log.1
135
- - lib/db/neostore.propertystore.db.index
136
- - lib/db/neostore.propertystore.db.strings.id
137
- - lib/db/nioneo_logical.log.active
138
- - lib/db/neostore.propertystore.db.strings
139
- - lib/db/neostore.relationshiptypestore.db.id
140
- - lib/db/neostore
141
- - lib/db/neostore.nodestore.db
142
- - lib/db/neostore.propertystore.db.index.keys.id
143
- - lib/db/neostore.propertystore.db.arrays.id
144
- - lib/db/messages.log
145
- - lib/db/neostore.relationshipstore.db.id
146
- - lib/db/neostore.propertystore.db.arrays
147
- - lib/db/neostore.relationshipstore.db
148
- - lib/db/neostore.propertystore.db.index.id
149
- - lib/db/neostore.propertystore.db.id
150
- - lib/db/neostore.propertystore.db
151
- - lib/db/tm_tx_log.1
152
- - lib/db/neostore.relationshiptypestore.db
153
- - lib/db/lock
154
- - lib/db/active_tx_log
155
- - lib/db/neostore.propertystore.db.index.keys
156
- - lib/db/index/lucene-store.db
157
- - lib/db/index/lucene.log.1
158
- - lib/db/index/lucene.log.active
159
- - config/locales/en.yml
160
- - config/neo4j/config.yml
161
- - README.rdoc
162
- - CHANGELOG
163
- - CONTRIBUTORS
164
- - Gemfile
165
- - neo4j.gemspec
105
+ extra_rdoc_files:
106
+ - README.rdoc
107
+ files:
108
+ - !binary |-
109
+ YmluL25lbzRqLWphcnM=
110
+ - !binary |-
111
+ YmluL25lbzRqLXNoZWxs
112
+ - !binary |-
113
+ YmluL25lbzRqLXVwZ3JhZGU=
114
+ - !binary |-
115
+ bGliL25lbzRqLnJi
116
+ - !binary |-
117
+ bGliL2RiL2FjdGl2ZV90eF9sb2c=
118
+ - !binary |-
119
+ bGliL2RiL21lc3NhZ2VzLmxvZw==
120
+ - !binary |-
121
+ bGliL2RiL25lb3N0b3Jl
122
+ - !binary |-
123
+ bGliL2RiL25lb3N0b3JlLmlk
124
+ - !binary |-
125
+ bGliL2RiL25lb3N0b3JlLm5vZGVzdG9yZS5kYg==
126
+ - !binary |-
127
+ bGliL2RiL25lb3N0b3JlLm5vZGVzdG9yZS5kYi5pZA==
128
+ - !binary |-
129
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGI=
130
+ - !binary |-
131
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuYXJyYXlz
132
+ - !binary |-
133
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuYXJyYXlzLmlk
134
+ - !binary |-
135
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaWQ=
136
+ - !binary |-
137
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXg=
138
+ - !binary |-
139
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXguaWQ=
140
+ - !binary |-
141
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXgua2V5cw==
142
+ - !binary |-
143
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuaW5kZXgua2V5cy5p
144
+ ZA==
145
+ - !binary |-
146
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuc3RyaW5ncw==
147
+ - !binary |-
148
+ bGliL2RiL25lb3N0b3JlLnByb3BlcnR5c3RvcmUuZGIuc3RyaW5ncy5pZA==
149
+ - !binary |-
150
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHN0b3JlLmRi
151
+ - !binary |-
152
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHN0b3JlLmRiLmlk
153
+ - !binary |-
154
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYg==
155
+ - !binary |-
156
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5pZA==
157
+ - !binary |-
158
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5uYW1l
159
+ cw==
160
+ - !binary |-
161
+ bGliL2RiL25lb3N0b3JlLnJlbGF0aW9uc2hpcHR5cGVzdG9yZS5kYi5uYW1l
162
+ cy5pZA==
163
+ - !binary |-
164
+ bGliL2RiL25pb25lb19sb2dpY2FsLmxvZy5hY3RpdmU=
165
+ - !binary |-
166
+ bGliL2RiL25pb25lb19sb2dpY2FsLmxvZy52MA==
167
+ - !binary |-
168
+ bGliL2RiL3RtX3R4X2xvZy4x
169
+ - !binary |-
170
+ bGliL2RiL2luZGV4L2x1Y2VuZS1zdG9yZS5kYg==
171
+ - !binary |-
172
+ bGliL2RiL2luZGV4L2x1Y2VuZS5sb2cuYWN0aXZl
173
+ - !binary |-
174
+ bGliL2RiL2luZGV4L2x1Y2VuZS5sb2cudjA=
175
+ - !binary |-
176
+ bGliL2dlbmVyYXRvcnMvbmVvNGoucmI=
177
+ - !binary |-
178
+ bGliL2dlbmVyYXRvcnMvbmVvNGovbW9kZWwvbW9kZWxfZ2VuZXJhdG9yLnJi
179
+ - !binary |-
180
+ bGliL2dlbmVyYXRvcnMvbmVvNGovbW9kZWwvdGVtcGxhdGVzL21vZGVsLmVy
181
+ Yg==
182
+ - !binary |-
183
+ bGliL25lbzRqL3BhZ2luYXRlZC5yYg==
184
+ - !binary |-
185
+ bGliL25lbzRqL3ZlcnNpb24ucmI=
186
+ - !binary |-
187
+ bGliL25lbzRqL3ZlcnNpb24ucmJ+
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=
286
+ - README.rdoc
287
+ - CHANGELOG
288
+ - CONTRIBUTORS
289
+ - Gemfile
290
+ - neo4j.gemspec
166
291
  homepage: http://github.com/andreasronge/neo4j/tree
167
292
  licenses: []
168
-
169
- post_install_message:
170
- rdoc_options:
171
- - --quiet
172
- - --title
173
- - Neo4j.rb
174
- - --line-numbers
175
- - --main
176
- - README.rdoc
177
- - --inline-source
178
- require_paths:
179
- - lib
180
- required_ruby_version: !ruby/object:Gem::Requirement
293
+ post_install_message:
294
+ rdoc_options:
295
+ - --quiet
296
+ - --title
297
+ - Neo4j.rb
298
+ - --line-numbers
299
+ - --main
300
+ - README.rdoc
301
+ - --inline-source
302
+ require_paths:
303
+ - lib
304
+ required_ruby_version: !ruby/object:Gem::Requirement
305
+ requirements:
306
+ - - ! '>='
307
+ - !ruby/object:Gem::Version
308
+ version: 1.8.7
181
309
  none: false
182
- requirements:
183
- - - ">="
184
- - !ruby/object:Gem::Version
185
- version: 1.8.7
186
- required_rubygems_version: !ruby/object:Gem::Requirement
310
+ required_rubygems_version: !ruby/object:Gem::Requirement
311
+ requirements:
312
+ - - ! '>='
313
+ - !ruby/object:Gem::Version
314
+ segments:
315
+ - 0
316
+ hash: 2
317
+ version: !binary |-
318
+ MA==
187
319
  none: false
188
- requirements:
189
- - - ">="
190
- - !ruby/object:Gem::Version
191
- version: "0"
192
320
  requirements: []
193
-
194
321
  rubyforge_project: neo4j
195
- rubygems_version: 1.8.15
196
- signing_key:
322
+ rubygems_version: 1.8.24
323
+ signing_key:
197
324
  specification_version: 3
198
325
  summary: A graph database for JRuby
199
326
  test_files: []
200
-
201
- has_rdoc: true