activegraph 11.0.0.beta.1-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 (144) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +2016 -0
  3. data/CONTRIBUTORS +12 -0
  4. data/Gemfile +24 -0
  5. data/README.md +111 -0
  6. data/activegraph.gemspec +52 -0
  7. data/bin/rake +17 -0
  8. data/config/locales/en.yml +5 -0
  9. data/config/neo4j/add_classnames.yml +1 -0
  10. data/config/neo4j/config.yml +35 -0
  11. data/lib/active_graph.rb +123 -0
  12. data/lib/active_graph/ansi.rb +14 -0
  13. data/lib/active_graph/attribute_set.rb +32 -0
  14. data/lib/active_graph/base.rb +77 -0
  15. data/lib/active_graph/class_arguments.rb +39 -0
  16. data/lib/active_graph/config.rb +135 -0
  17. data/lib/active_graph/core.rb +14 -0
  18. data/lib/active_graph/core/connection_failed_error.rb +6 -0
  19. data/lib/active_graph/core/cypher_error.rb +37 -0
  20. data/lib/active_graph/core/entity.rb +11 -0
  21. data/lib/active_graph/core/instrumentable.rb +37 -0
  22. data/lib/active_graph/core/label.rb +135 -0
  23. data/lib/active_graph/core/logging.rb +44 -0
  24. data/lib/active_graph/core/node.rb +15 -0
  25. data/lib/active_graph/core/querable.rb +41 -0
  26. data/lib/active_graph/core/query.rb +485 -0
  27. data/lib/active_graph/core/query_builder.rb +18 -0
  28. data/lib/active_graph/core/query_clauses.rb +727 -0
  29. data/lib/active_graph/core/query_ext.rb +24 -0
  30. data/lib/active_graph/core/query_find_in_batches.rb +46 -0
  31. data/lib/active_graph/core/record.rb +51 -0
  32. data/lib/active_graph/core/result.rb +31 -0
  33. data/lib/active_graph/core/schema.rb +65 -0
  34. data/lib/active_graph/core/schema_errors.rb +12 -0
  35. data/lib/active_graph/core/wrappable.rb +30 -0
  36. data/lib/active_graph/errors.rb +59 -0
  37. data/lib/active_graph/lazy_attribute_hash.rb +38 -0
  38. data/lib/active_graph/migration.rb +148 -0
  39. data/lib/active_graph/migrations.rb +27 -0
  40. data/lib/active_graph/migrations/base.rb +77 -0
  41. data/lib/active_graph/migrations/check_pending.rb +20 -0
  42. data/lib/active_graph/migrations/helpers.rb +105 -0
  43. data/lib/active_graph/migrations/helpers/id_property.rb +72 -0
  44. data/lib/active_graph/migrations/helpers/relationships.rb +66 -0
  45. data/lib/active_graph/migrations/helpers/schema.rb +63 -0
  46. data/lib/active_graph/migrations/migration_file.rb +24 -0
  47. data/lib/active_graph/migrations/runner.rb +195 -0
  48. data/lib/active_graph/migrations/schema.rb +64 -0
  49. data/lib/active_graph/migrations/schema_migration.rb +14 -0
  50. data/lib/active_graph/model_schema.rb +139 -0
  51. data/lib/active_graph/node.rb +110 -0
  52. data/lib/active_graph/node/callbacks.rb +8 -0
  53. data/lib/active_graph/node/dependent.rb +11 -0
  54. data/lib/active_graph/node/dependent/association_methods.rb +49 -0
  55. data/lib/active_graph/node/dependent/query_proxy_methods.rb +52 -0
  56. data/lib/active_graph/node/dependent_callbacks.rb +31 -0
  57. data/lib/active_graph/node/enum.rb +26 -0
  58. data/lib/active_graph/node/has_n.rb +602 -0
  59. data/lib/active_graph/node/has_n/association.rb +278 -0
  60. data/lib/active_graph/node/has_n/association/rel_factory.rb +61 -0
  61. data/lib/active_graph/node/has_n/association/rel_wrapper.rb +23 -0
  62. data/lib/active_graph/node/has_n/association_cypher_methods.rb +108 -0
  63. data/lib/active_graph/node/id_property.rb +224 -0
  64. data/lib/active_graph/node/id_property/accessor.rb +62 -0
  65. data/lib/active_graph/node/initialize.rb +21 -0
  66. data/lib/active_graph/node/labels.rb +207 -0
  67. data/lib/active_graph/node/labels/index.rb +37 -0
  68. data/lib/active_graph/node/labels/reloading.rb +21 -0
  69. data/lib/active_graph/node/node_list_formatter.rb +13 -0
  70. data/lib/active_graph/node/node_wrapper.rb +54 -0
  71. data/lib/active_graph/node/orm_adapter.rb +82 -0
  72. data/lib/active_graph/node/persistence.rb +186 -0
  73. data/lib/active_graph/node/property.rb +60 -0
  74. data/lib/active_graph/node/query.rb +76 -0
  75. data/lib/active_graph/node/query/query_proxy.rb +367 -0
  76. data/lib/active_graph/node/query/query_proxy_eager_loading.rb +177 -0
  77. data/lib/active_graph/node/query/query_proxy_eager_loading/association_tree.rb +75 -0
  78. data/lib/active_graph/node/query/query_proxy_enumerable.rb +110 -0
  79. data/lib/active_graph/node/query/query_proxy_find_in_batches.rb +19 -0
  80. data/lib/active_graph/node/query/query_proxy_link.rb +139 -0
  81. data/lib/active_graph/node/query/query_proxy_methods.rb +303 -0
  82. data/lib/active_graph/node/query/query_proxy_methods_of_mass_updating.rb +99 -0
  83. data/lib/active_graph/node/query_methods.rb +68 -0
  84. data/lib/active_graph/node/reflection.rb +86 -0
  85. data/lib/active_graph/node/rels.rb +11 -0
  86. data/lib/active_graph/node/scope.rb +166 -0
  87. data/lib/active_graph/node/unpersisted.rb +48 -0
  88. data/lib/active_graph/node/validations.rb +59 -0
  89. data/lib/active_graph/paginated.rb +27 -0
  90. data/lib/active_graph/railtie.rb +108 -0
  91. data/lib/active_graph/relationship.rb +68 -0
  92. data/lib/active_graph/relationship/callbacks.rb +21 -0
  93. data/lib/active_graph/relationship/initialize.rb +28 -0
  94. data/lib/active_graph/relationship/persistence.rb +133 -0
  95. data/lib/active_graph/relationship/persistence/query_factory.rb +95 -0
  96. data/lib/active_graph/relationship/property.rb +92 -0
  97. data/lib/active_graph/relationship/query.rb +99 -0
  98. data/lib/active_graph/relationship/rel_wrapper.rb +31 -0
  99. data/lib/active_graph/relationship/related_node.rb +87 -0
  100. data/lib/active_graph/relationship/types.rb +80 -0
  101. data/lib/active_graph/relationship/validations.rb +8 -0
  102. data/lib/active_graph/schema/operation.rb +102 -0
  103. data/lib/active_graph/shared.rb +48 -0
  104. data/lib/active_graph/shared/attributes.rb +217 -0
  105. data/lib/active_graph/shared/callbacks.rb +66 -0
  106. data/lib/active_graph/shared/cypher.rb +37 -0
  107. data/lib/active_graph/shared/declared_properties.rb +204 -0
  108. data/lib/active_graph/shared/declared_property.rb +109 -0
  109. data/lib/active_graph/shared/declared_property/index.rb +37 -0
  110. data/lib/active_graph/shared/enum.rb +167 -0
  111. data/lib/active_graph/shared/filtered_hash.rb +79 -0
  112. data/lib/active_graph/shared/identity.rb +34 -0
  113. data/lib/active_graph/shared/initialize.rb +65 -0
  114. data/lib/active_graph/shared/marshal.rb +23 -0
  115. data/lib/active_graph/shared/mass_assignment.rb +63 -0
  116. data/lib/active_graph/shared/permitted_attributes.rb +28 -0
  117. data/lib/active_graph/shared/persistence.rb +272 -0
  118. data/lib/active_graph/shared/property.rb +249 -0
  119. data/lib/active_graph/shared/query_factory.rb +122 -0
  120. data/lib/active_graph/shared/rel_type_converters.rb +43 -0
  121. data/lib/active_graph/shared/serialized_properties.rb +30 -0
  122. data/lib/active_graph/shared/type_converters.rb +439 -0
  123. data/lib/active_graph/shared/typecasted_attributes.rb +99 -0
  124. data/lib/active_graph/shared/typecaster.rb +53 -0
  125. data/lib/active_graph/shared/validations.rb +44 -0
  126. data/lib/active_graph/tasks/migration.rake +204 -0
  127. data/lib/active_graph/timestamps.rb +11 -0
  128. data/lib/active_graph/timestamps/created.rb +9 -0
  129. data/lib/active_graph/timestamps/updated.rb +9 -0
  130. data/lib/active_graph/transaction.rb +22 -0
  131. data/lib/active_graph/transactions.rb +57 -0
  132. data/lib/active_graph/type_converters.rb +7 -0
  133. data/lib/active_graph/undeclared_properties.rb +53 -0
  134. data/lib/active_graph/version.rb +3 -0
  135. data/lib/active_graph/wrapper.rb +4 -0
  136. data/lib/rails/generators/active_graph/migration/migration_generator.rb +16 -0
  137. data/lib/rails/generators/active_graph/migration/templates/migration.erb +9 -0
  138. data/lib/rails/generators/active_graph/model/model_generator.rb +89 -0
  139. data/lib/rails/generators/active_graph/model/templates/migration.erb +11 -0
  140. data/lib/rails/generators/active_graph/model/templates/model.erb +15 -0
  141. data/lib/rails/generators/active_graph/upgrade_v8/templates/migration.erb +17 -0
  142. data/lib/rails/generators/active_graph/upgrade_v8/upgrade_v8_generator.rb +34 -0
  143. data/lib/rails/generators/active_graph_generator.rb +121 -0
  144. metadata +423 -0
metadata ADDED
@@ -0,0 +1,423 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activegraph
3
+ version: !ruby/object:Gem::Version
4
+ version: 11.0.0.beta.1
5
+ platform: java
6
+ authors:
7
+ - Andreas Ronge, Brian Underwood, Chris Grigg, Heinrich Klobuczek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '4.0'
19
+ name: activemodel
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '4.0'
33
+ name: activesupport
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "!="
45
+ - !ruby/object:Gem::Version
46
+ version: 1.3.0
47
+ name: i18n
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "!="
53
+ - !ruby/object:Gem::Version
54
+ version: 1.3.0
55
+ - !ruby/object:Gem::Dependency
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: 0.5.0
61
+ name: orm_adapter
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.5.0
69
+ - !ruby/object:Gem::Dependency
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 4.1.0.beta.1
75
+ name: neo4j-java-driver
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 4.1.0.beta.1
83
+ - !ruby/object:Gem::Dependency
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ name: guard
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ name: guard-rspec
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ name: guard-rubocop
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: 0.3.0
131
+ name: neo4j-rake_tasks
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 0.3.0
139
+ - !ruby/object:Gem::Dependency
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ name: os
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ requirement: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ name: pry
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ requirement: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '4.0'
173
+ name: railties
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '4.0'
181
+ - !ruby/object:Gem::Dependency
182
+ requirement: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ name: rake
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ requirement: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: 0.56.0
201
+ name: rubocop
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: 0.56.0
209
+ - !ruby/object:Gem::Dependency
210
+ requirement: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
215
+ name: yard
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ - !ruby/object:Gem::Dependency
224
+ requirement: !ruby/object:Gem::Requirement
225
+ requirements:
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ version: '0'
229
+ name: dryspec
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ description: 'A Neo4j OGM (Object-Graph-Mapper) for Ruby heavily inspired by ActiveRecord.
238
+
239
+ '
240
+ email: andreas.ronge@gmail.com, public@brian-underwood.codes, chris@subvertallmedia.com,
241
+ heinrich@mail.com
242
+ executables: []
243
+ extensions: []
244
+ extra_rdoc_files:
245
+ - README.md
246
+ files:
247
+ - CHANGELOG.md
248
+ - CONTRIBUTORS
249
+ - Gemfile
250
+ - README.md
251
+ - activegraph.gemspec
252
+ - bin/rake
253
+ - config/locales/en.yml
254
+ - config/neo4j/add_classnames.yml
255
+ - config/neo4j/config.yml
256
+ - lib/active_graph.rb
257
+ - lib/active_graph/ansi.rb
258
+ - lib/active_graph/attribute_set.rb
259
+ - lib/active_graph/base.rb
260
+ - lib/active_graph/class_arguments.rb
261
+ - lib/active_graph/config.rb
262
+ - lib/active_graph/core.rb
263
+ - lib/active_graph/core/connection_failed_error.rb
264
+ - lib/active_graph/core/cypher_error.rb
265
+ - lib/active_graph/core/entity.rb
266
+ - lib/active_graph/core/instrumentable.rb
267
+ - lib/active_graph/core/label.rb
268
+ - lib/active_graph/core/logging.rb
269
+ - lib/active_graph/core/node.rb
270
+ - lib/active_graph/core/querable.rb
271
+ - lib/active_graph/core/query.rb
272
+ - lib/active_graph/core/query_builder.rb
273
+ - lib/active_graph/core/query_clauses.rb
274
+ - lib/active_graph/core/query_ext.rb
275
+ - lib/active_graph/core/query_find_in_batches.rb
276
+ - lib/active_graph/core/record.rb
277
+ - lib/active_graph/core/result.rb
278
+ - lib/active_graph/core/schema.rb
279
+ - lib/active_graph/core/schema_errors.rb
280
+ - lib/active_graph/core/wrappable.rb
281
+ - lib/active_graph/errors.rb
282
+ - lib/active_graph/lazy_attribute_hash.rb
283
+ - lib/active_graph/migration.rb
284
+ - lib/active_graph/migrations.rb
285
+ - lib/active_graph/migrations/base.rb
286
+ - lib/active_graph/migrations/check_pending.rb
287
+ - lib/active_graph/migrations/helpers.rb
288
+ - lib/active_graph/migrations/helpers/id_property.rb
289
+ - lib/active_graph/migrations/helpers/relationships.rb
290
+ - lib/active_graph/migrations/helpers/schema.rb
291
+ - lib/active_graph/migrations/migration_file.rb
292
+ - lib/active_graph/migrations/runner.rb
293
+ - lib/active_graph/migrations/schema.rb
294
+ - lib/active_graph/migrations/schema_migration.rb
295
+ - lib/active_graph/model_schema.rb
296
+ - lib/active_graph/node.rb
297
+ - lib/active_graph/node/callbacks.rb
298
+ - lib/active_graph/node/dependent.rb
299
+ - lib/active_graph/node/dependent/association_methods.rb
300
+ - lib/active_graph/node/dependent/query_proxy_methods.rb
301
+ - lib/active_graph/node/dependent_callbacks.rb
302
+ - lib/active_graph/node/enum.rb
303
+ - lib/active_graph/node/has_n.rb
304
+ - lib/active_graph/node/has_n/association.rb
305
+ - lib/active_graph/node/has_n/association/rel_factory.rb
306
+ - lib/active_graph/node/has_n/association/rel_wrapper.rb
307
+ - lib/active_graph/node/has_n/association_cypher_methods.rb
308
+ - lib/active_graph/node/id_property.rb
309
+ - lib/active_graph/node/id_property/accessor.rb
310
+ - lib/active_graph/node/initialize.rb
311
+ - lib/active_graph/node/labels.rb
312
+ - lib/active_graph/node/labels/index.rb
313
+ - lib/active_graph/node/labels/reloading.rb
314
+ - lib/active_graph/node/node_list_formatter.rb
315
+ - lib/active_graph/node/node_wrapper.rb
316
+ - lib/active_graph/node/orm_adapter.rb
317
+ - lib/active_graph/node/persistence.rb
318
+ - lib/active_graph/node/property.rb
319
+ - lib/active_graph/node/query.rb
320
+ - lib/active_graph/node/query/query_proxy.rb
321
+ - lib/active_graph/node/query/query_proxy_eager_loading.rb
322
+ - lib/active_graph/node/query/query_proxy_eager_loading/association_tree.rb
323
+ - lib/active_graph/node/query/query_proxy_enumerable.rb
324
+ - lib/active_graph/node/query/query_proxy_find_in_batches.rb
325
+ - lib/active_graph/node/query/query_proxy_link.rb
326
+ - lib/active_graph/node/query/query_proxy_methods.rb
327
+ - lib/active_graph/node/query/query_proxy_methods_of_mass_updating.rb
328
+ - lib/active_graph/node/query_methods.rb
329
+ - lib/active_graph/node/reflection.rb
330
+ - lib/active_graph/node/rels.rb
331
+ - lib/active_graph/node/scope.rb
332
+ - lib/active_graph/node/unpersisted.rb
333
+ - lib/active_graph/node/validations.rb
334
+ - lib/active_graph/paginated.rb
335
+ - lib/active_graph/railtie.rb
336
+ - lib/active_graph/relationship.rb
337
+ - lib/active_graph/relationship/callbacks.rb
338
+ - lib/active_graph/relationship/initialize.rb
339
+ - lib/active_graph/relationship/persistence.rb
340
+ - lib/active_graph/relationship/persistence/query_factory.rb
341
+ - lib/active_graph/relationship/property.rb
342
+ - lib/active_graph/relationship/query.rb
343
+ - lib/active_graph/relationship/rel_wrapper.rb
344
+ - lib/active_graph/relationship/related_node.rb
345
+ - lib/active_graph/relationship/types.rb
346
+ - lib/active_graph/relationship/validations.rb
347
+ - lib/active_graph/schema/operation.rb
348
+ - lib/active_graph/shared.rb
349
+ - lib/active_graph/shared/attributes.rb
350
+ - lib/active_graph/shared/callbacks.rb
351
+ - lib/active_graph/shared/cypher.rb
352
+ - lib/active_graph/shared/declared_properties.rb
353
+ - lib/active_graph/shared/declared_property.rb
354
+ - lib/active_graph/shared/declared_property/index.rb
355
+ - lib/active_graph/shared/enum.rb
356
+ - lib/active_graph/shared/filtered_hash.rb
357
+ - lib/active_graph/shared/identity.rb
358
+ - lib/active_graph/shared/initialize.rb
359
+ - lib/active_graph/shared/marshal.rb
360
+ - lib/active_graph/shared/mass_assignment.rb
361
+ - lib/active_graph/shared/permitted_attributes.rb
362
+ - lib/active_graph/shared/persistence.rb
363
+ - lib/active_graph/shared/property.rb
364
+ - lib/active_graph/shared/query_factory.rb
365
+ - lib/active_graph/shared/rel_type_converters.rb
366
+ - lib/active_graph/shared/serialized_properties.rb
367
+ - lib/active_graph/shared/type_converters.rb
368
+ - lib/active_graph/shared/typecasted_attributes.rb
369
+ - lib/active_graph/shared/typecaster.rb
370
+ - lib/active_graph/shared/validations.rb
371
+ - lib/active_graph/tasks/migration.rake
372
+ - lib/active_graph/timestamps.rb
373
+ - lib/active_graph/timestamps/created.rb
374
+ - lib/active_graph/timestamps/updated.rb
375
+ - lib/active_graph/transaction.rb
376
+ - lib/active_graph/transactions.rb
377
+ - lib/active_graph/type_converters.rb
378
+ - lib/active_graph/undeclared_properties.rb
379
+ - lib/active_graph/version.rb
380
+ - lib/active_graph/wrapper.rb
381
+ - lib/rails/generators/active_graph/migration/migration_generator.rb
382
+ - lib/rails/generators/active_graph/migration/templates/migration.erb
383
+ - lib/rails/generators/active_graph/model/model_generator.rb
384
+ - lib/rails/generators/active_graph/model/templates/migration.erb
385
+ - lib/rails/generators/active_graph/model/templates/model.erb
386
+ - lib/rails/generators/active_graph/upgrade_v8/templates/migration.erb
387
+ - lib/rails/generators/active_graph/upgrade_v8/upgrade_v8_generator.rb
388
+ - lib/rails/generators/active_graph_generator.rb
389
+ homepage: https://github.com/neo4jrb/activegraph/
390
+ licenses:
391
+ - MIT
392
+ metadata:
393
+ homepage_uri: http://neo4jrb.io/
394
+ changelog_uri: https://github.com/neo4jrb/activegraph/blob/master/CHANGELOG.md
395
+ source_code_uri: https://github.com/neo4jrb/activegraph/
396
+ bug_tracker_uri: https://github.com/neo4jrb/activegraph/issues
397
+ post_install_message:
398
+ rdoc_options:
399
+ - "--quiet"
400
+ - "--title"
401
+ - Neo4j.rb
402
+ - "--line-numbers"
403
+ - "--main"
404
+ - README.rdoc
405
+ - "--inline-source"
406
+ require_paths:
407
+ - lib
408
+ required_ruby_version: !ruby/object:Gem::Requirement
409
+ requirements:
410
+ - - ">="
411
+ - !ruby/object:Gem::Version
412
+ version: '2.5'
413
+ required_rubygems_version: !ruby/object:Gem::Requirement
414
+ requirements:
415
+ - - ">"
416
+ - !ruby/object:Gem::Version
417
+ version: 1.3.1
418
+ requirements: []
419
+ rubygems_version: 3.0.6
420
+ signing_key:
421
+ specification_version: 4
422
+ summary: A graph database for Ruby
423
+ test_files: []