neo4j 1.0.0.beta.20 → 3.0.0.alpha.2
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.
- checksums.yaml +7 -0
- data/CHANGELOG +243 -0
- data/CONTRIBUTORS +12 -0
- data/Gemfile +10 -11
- data/README.md +23 -0
- data/bin/neo4j-jars +33 -0
- data/config/locales/en.yml +5 -0
- data/config/neo4j/config.yml +98 -0
- data/lib/neo4j.rb +28 -68
- data/lib/neo4j/active_node.rb +60 -0
- data/lib/neo4j/active_node/callbacks.rb +41 -0
- data/lib/neo4j/active_node/has_n.rb +138 -0
- data/lib/neo4j/active_node/has_n/decl_rel.rb +236 -0
- data/lib/neo4j/active_node/has_n/nodes.rb +82 -0
- data/lib/neo4j/active_node/identity.rb +28 -0
- data/lib/neo4j/active_node/initialize.rb +24 -0
- data/lib/neo4j/active_node/labels.rb +142 -0
- data/lib/neo4j/active_node/persistence.rb +193 -0
- data/lib/neo4j/active_node/property.rb +41 -0
- data/lib/neo4j/active_node/rels.rb +11 -0
- data/lib/neo4j/active_node/validations.rb +51 -0
- data/lib/neo4j/railtie.rb +40 -0
- data/lib/neo4j/version.rb +1 -1
- data/lib/neo4j/wrapper.rb +25 -0
- data/neo4j.gemspec +25 -15
- metadata +136 -149
- data/README.rdoc +0 -135
- data/lib/generators/neo4j.rb +0 -65
- data/lib/generators/neo4j/model/model_generator.rb +0 -39
- data/lib/generators/neo4j/model/templates/model.erb +0 -7
- data/lib/neo4j/config.rb +0 -153
- data/lib/neo4j/database.rb +0 -56
- data/lib/neo4j/equal.rb +0 -21
- data/lib/neo4j/event_handler.rb +0 -116
- data/lib/neo4j/index/class_methods.rb +0 -62
- data/lib/neo4j/index/index.rb +0 -33
- data/lib/neo4j/index/indexer.rb +0 -312
- data/lib/neo4j/index/indexer_registry.rb +0 -68
- data/lib/neo4j/index/lucene_query.rb +0 -191
- data/lib/neo4j/jars/geronimo-jta_1.1_spec-1.1.1.jar +0 -0
- data/lib/neo4j/jars/lucene-core-3.0.2.jar +0 -0
- data/lib/neo4j/jars/neo4j-index-1.2-1.2.M03.jar +0 -0
- data/lib/neo4j/jars/neo4j-kernel-1.2-1.2.M03.jar +0 -0
- data/lib/neo4j/jars/neo4j-lucene-index-0.2-1.2.M03.jar +0 -0
- data/lib/neo4j/load.rb +0 -21
- data/lib/neo4j/mapping/class_methods/init_node.rb +0 -50
- data/lib/neo4j/mapping/class_methods/init_rel.rb +0 -35
- data/lib/neo4j/mapping/class_methods/property.rb +0 -80
- data/lib/neo4j/mapping/class_methods/relationship.rb +0 -90
- data/lib/neo4j/mapping/class_methods/root.rb +0 -31
- data/lib/neo4j/mapping/class_methods/rule.rb +0 -295
- data/lib/neo4j/mapping/decl_relationship_dsl.rb +0 -214
- data/lib/neo4j/mapping/has_n.rb +0 -83
- data/lib/neo4j/mapping/node_mixin.rb +0 -97
- data/lib/neo4j/mapping/relationship_mixin.rb +0 -117
- data/lib/neo4j/model.rb +0 -4
- data/lib/neo4j/neo4j.rb +0 -95
- data/lib/neo4j/node.rb +0 -131
- data/lib/neo4j/node_mixin.rb +0 -4
- data/lib/neo4j/node_relationship.rb +0 -149
- data/lib/neo4j/node_traverser.rb +0 -157
- data/lib/neo4j/property.rb +0 -111
- data/lib/neo4j/rails/finders.rb +0 -121
- data/lib/neo4j/rails/lucene_connection_closer.rb +0 -19
- data/lib/neo4j/rails/mapping/property.rb +0 -35
- data/lib/neo4j/rails/model.rb +0 -324
- data/lib/neo4j/rails/railtie.rb +0 -16
- data/lib/neo4j/rails/transaction.rb +0 -67
- data/lib/neo4j/rails/tx_methods.rb +0 -15
- data/lib/neo4j/rails/validations/non_nil.rb +0 -11
- data/lib/neo4j/rails/validations/uniqueness.rb +0 -31
- data/lib/neo4j/rails/value.rb +0 -124
- data/lib/neo4j/rails/value_properties.rb +0 -29
- data/lib/neo4j/relationship.rb +0 -169
- data/lib/neo4j/relationship_mixin.rb +0 -4
- data/lib/neo4j/relationship_traverser.rb +0 -92
- data/lib/neo4j/to_java.rb +0 -31
- data/lib/neo4j/transaction.rb +0 -68
- data/lib/neo4j/type_converters.rb +0 -98
@@ -0,0 +1,41 @@
|
|
1
|
+
module Neo4j::ActiveNode
|
2
|
+
module Property
|
3
|
+
extend ActiveSupport::Concern
|
4
|
+
|
5
|
+
include ActiveAttr::Attributes
|
6
|
+
include ActiveAttr::MassAssignment
|
7
|
+
include ActiveAttr::TypecastedAttributes
|
8
|
+
include ActiveAttr::AttributeDefaults
|
9
|
+
include ActiveModel::Dirty
|
10
|
+
|
11
|
+
|
12
|
+
def initialize(attributes={}, options={})
|
13
|
+
super(attributes, options)
|
14
|
+
(@changed_attributes || {}).clear
|
15
|
+
end
|
16
|
+
|
17
|
+
def save_properties
|
18
|
+
@previously_changed = changes
|
19
|
+
@changed_attributes.clear
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
module ClassMethods
|
24
|
+
|
25
|
+
def property(name, options={})
|
26
|
+
attribute(name, options)
|
27
|
+
end
|
28
|
+
|
29
|
+
def attribute!(name, options={})
|
30
|
+
super(name, options)
|
31
|
+
define_method("#{name}=") do |value|
|
32
|
+
typecast_value = typecast_attribute(typecaster_for(self.class._attribute_type(name)), value)
|
33
|
+
send("#{name}_will_change!") unless typecast_value == read_attribute(name)
|
34
|
+
super(value)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module Neo4j::ActiveNode
|
2
|
+
module Rels
|
3
|
+
extend Forwardable
|
4
|
+
def_delegators :_rels_delegator, :rel?, :rel, :rels, :node, :nodes, :create_rel
|
5
|
+
|
6
|
+
def _rels_delegator
|
7
|
+
raise "Can't access relationship on a none persisted node" unless _persisted_node
|
8
|
+
_persisted_node
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module Neo4j
|
2
|
+
module ActiveNode
|
3
|
+
# This mixin replace the original save method and performs validation before the save.
|
4
|
+
module Validations
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
include ActiveModel::Validations
|
8
|
+
|
9
|
+
|
10
|
+
# Implements the ActiveModel::Validation hook method.
|
11
|
+
# @see http://rubydoc.info/docs/rails/ActiveModel/Validations:read_attribute_for_validation
|
12
|
+
def read_attribute_for_validation(key)
|
13
|
+
respond_to?(key) ? send(key) : self[key]
|
14
|
+
end
|
15
|
+
|
16
|
+
# The validation process on save can be skipped by passing false. The regular Model#save method is
|
17
|
+
# replaced with this when the validations module is mixed in, which it is by default.
|
18
|
+
# @param [Hash] options the options to create a message with.
|
19
|
+
# @option options [true, false] :validate if false no validation will take place
|
20
|
+
# @return [Boolean] true if it saved it successfully
|
21
|
+
def save(options={})
|
22
|
+
result = perform_validations(options) ? super : false
|
23
|
+
if !result
|
24
|
+
Neo4j::Transaction.current.failure if Neo4j::Transaction.current
|
25
|
+
end
|
26
|
+
result
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Boolean] true if valid
|
30
|
+
def valid?(context = nil)
|
31
|
+
context ||= (new_record? ? :create : :update)
|
32
|
+
super(context)
|
33
|
+
errors.empty?
|
34
|
+
end
|
35
|
+
|
36
|
+
private
|
37
|
+
def perform_validations(options={})
|
38
|
+
perform_validation = case options
|
39
|
+
when Hash
|
40
|
+
options[:validate] != false
|
41
|
+
end
|
42
|
+
|
43
|
+
if perform_validation
|
44
|
+
valid?(options.is_a?(Hash) ? options[:context] : nil)
|
45
|
+
else
|
46
|
+
true
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module Neo4j
|
2
|
+
class Railtie < ::Rails::Railtie
|
3
|
+
config.neo4j = ActiveSupport::OrderedOptions.new
|
4
|
+
|
5
|
+
# Add ActiveModel translations to the I18n load_path
|
6
|
+
initializer "i18n" do |app|
|
7
|
+
config.i18n.load_path += Dir[File.join(File.dirname(__FILE__), '..', '..', '..', 'config', 'locales', '*.{rb,yml}')]
|
8
|
+
end
|
9
|
+
|
10
|
+
# Starting Neo after :load_config_initializers allows apps to
|
11
|
+
# register migrations in config/initializers
|
12
|
+
initializer "neo4j.start", :after => :load_config_initializers do |app|
|
13
|
+
cfg = app.config.neo4j
|
14
|
+
# Set Rails specific defaults
|
15
|
+
|
16
|
+
cfg.session_type ||= :server_db
|
17
|
+
cfg.session_path ||= "http://localhost:7474"
|
18
|
+
|
19
|
+
if !(RUBY_PLATFORM =~ /java/) && cfg.session_type == :embedded_db
|
20
|
+
raise "Tried to start embedded Neo4j db without using JRuby (got #{RUBY_PLATFORM}), please run `rvm jruby`"
|
21
|
+
end
|
22
|
+
|
23
|
+
puts "Create Neo4j Session #{cfg.session_type}, path: #{cfg.session_path}"
|
24
|
+
session = Neo4j::Session.open(cfg.session_type, cfg.session_path)
|
25
|
+
if cfg.session_type == :embedded_db
|
26
|
+
|
27
|
+
# See https://github.com/jruby/jruby/wiki/UnlimitedStrengthCrypto
|
28
|
+
security_class = java.lang.Class.for_name('javax.crypto.JceSecurity')
|
29
|
+
restricted_field = security_class.get_declared_field('isRestricted')
|
30
|
+
restricted_field.accessible = true
|
31
|
+
restricted_field.set nil, false
|
32
|
+
|
33
|
+
session.start
|
34
|
+
end
|
35
|
+
|
36
|
+
#cfg.storage_path = "#{app.config.root}/db/neo4j-#{::Rails.env}" unless cfg.storage_path
|
37
|
+
#Neo4j::Config.setup.merge!(cfg.to_hash)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/lib/neo4j/version.rb
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
class Neo4j::Node
|
2
|
+
|
3
|
+
module Wrapper
|
4
|
+
|
5
|
+
# this is a plugin in the neo4j-core so that the Ruby wrapper will be wrapped around the Neo4j::Node objects
|
6
|
+
def wrapper
|
7
|
+
wrappers = _class_wrappers
|
8
|
+
if wrappers.empty?
|
9
|
+
self
|
10
|
+
else
|
11
|
+
found = wrappers.sort.first
|
12
|
+
wrapped_node = Neo4j::ActiveNode::Labels._wrapped_labels[found].new
|
13
|
+
wrapped_node.init_on_load(self, self.props)
|
14
|
+
wrapped_node
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def _class_wrappers
|
19
|
+
labels.find_all do |label_name|
|
20
|
+
Neo4j::ActiveNode::Labels._wrapped_labels[label_name].class == Class
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
data/neo4j.gemspec
CHANGED
@@ -1,30 +1,40 @@
|
|
1
1
|
lib = File.expand_path('../lib/', __FILE__)
|
2
2
|
$:.unshift lib unless $:.include?(lib)
|
3
|
-
|
3
|
+
|
4
4
|
require 'neo4j/version'
|
5
5
|
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
|
-
s.name
|
9
|
-
s.version
|
10
|
-
|
11
|
-
|
12
|
-
s.
|
8
|
+
s.name = "neo4j"
|
9
|
+
s.version = Neo4j::VERSION
|
10
|
+
s.required_ruby_version = ">= 1.9.1"
|
11
|
+
|
12
|
+
s.authors = "Andreas Ronge"
|
13
|
+
s.email = 'andreas.ronge@gmail.com'
|
13
14
|
s.homepage = "http://github.com/andreasronge/neo4j/tree"
|
14
15
|
s.rubyforge_project = 'neo4j'
|
15
|
-
s.summary = "A graph database for
|
16
|
+
s.summary = "A graph database for Ruby"
|
16
17
|
s.description = <<-EOF
|
17
18
|
You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database.
|
18
|
-
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
|
19
|
+
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables
|
20
|
+
yet enjoys all the benefits of a fully transactional, enterprise-strength database.
|
19
21
|
It comes included with the Apache Lucene document database.
|
20
|
-
EOF
|
22
|
+
EOF
|
21
23
|
|
22
24
|
s.require_path = 'lib'
|
23
|
-
s.files
|
25
|
+
s.files = Dir.glob("{bin,lib,config}/**/*") + %w(README.md CHANGELOG CONTRIBUTORS Gemfile neo4j.gemspec)
|
26
|
+
s.executables = ['neo4j-jars']
|
24
27
|
s.has_rdoc = true
|
25
|
-
s.extra_rdoc_files = %w( README.
|
26
|
-
s.rdoc_options = ["--quiet", "--title", "Neo4j.rb", "--
|
27
|
-
|
28
|
-
s.add_dependency(
|
29
|
-
s.add_dependency("
|
28
|
+
s.extra_rdoc_files = %w( README.md )
|
29
|
+
s.rdoc_options = ["--quiet", "--title", "Neo4j.rb", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
|
30
|
+
|
31
|
+
s.add_dependency('orm_adapter', "~> 0.4.0")
|
32
|
+
s.add_dependency("activemodel", "~> 4.0.0")
|
33
|
+
s.add_dependency("railties", "~> 4.0.0")
|
34
|
+
s.add_dependency('active_attr', "~> 0.8")
|
35
|
+
s.add_dependency("neo4j-core", "= 3.0.0.alpha.6")
|
36
|
+
|
37
|
+
if RUBY_PLATFORM =~ /java/
|
38
|
+
s.add_dependency("neo4j-community", '~> 2.0.0')
|
39
|
+
end
|
30
40
|
end
|
metadata
CHANGED
@@ -1,163 +1,150 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- beta
|
10
|
-
- 20
|
11
|
-
version: 1.0.0.beta.20
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.0.alpha.2
|
12
5
|
platform: ruby
|
13
|
-
authors:
|
14
|
-
|
6
|
+
authors:
|
7
|
+
- Andreas Ronge
|
15
8
|
autorequire:
|
16
9
|
bindir: bin
|
17
10
|
cert_chain: []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
11
|
+
date: 2014-01-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: orm_adapter
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.4.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.4.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activemodel
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 4.0.0
|
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.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: railties
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 4.0.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 4.0.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: active_attr
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.8'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.8'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: neo4j-core
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 3.0.0.alpha.6
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.0.0.alpha.6
|
83
|
+
description: "You can think of Neo4j as a high-performance graph engine with all the
|
84
|
+
features of a mature and robust database.\nThe programmer works with an object-oriented,
|
85
|
+
flexible network structure rather than with strict and static tables \nyet enjoys
|
86
|
+
all the benefits of a fully transactional, enterprise-strength database.\nIt comes
|
87
|
+
included with the Apache Lucene document database.\n"
|
53
88
|
email: andreas.ronge@gmail.com
|
54
|
-
executables:
|
55
|
-
|
89
|
+
executables:
|
90
|
+
- neo4j-jars
|
56
91
|
extensions: []
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
- lib/neo4j/rails/model.rb
|
85
|
-
- lib/neo4j/rails/railtie.rb
|
86
|
-
- lib/neo4j/rails/lucene_connection_closer.rb
|
87
|
-
- lib/neo4j/rails/transaction.rb
|
88
|
-
- lib/neo4j/rails/tx_methods.rb
|
89
|
-
- lib/neo4j/rails/value_properties.rb
|
90
|
-
- lib/neo4j/rails/finders.rb
|
91
|
-
- lib/neo4j/rails/value.rb
|
92
|
-
- lib/neo4j/rails/mapping/property.rb
|
93
|
-
- lib/neo4j/rails/validations/uniqueness.rb
|
94
|
-
- lib/neo4j/rails/validations/non_nil.rb
|
95
|
-
- lib/neo4j/jars/geronimo-jta_1.1_spec-1.1.1.jar
|
96
|
-
- lib/neo4j/jars/lucene-core-3.0.2.jar
|
97
|
-
- lib/neo4j/jars/neo4j-index-1.2-1.2.M03.jar
|
98
|
-
- lib/neo4j/jars/neo4j-lucene-index-0.2-1.2.M03.jar
|
99
|
-
- lib/neo4j/jars/neo4j-kernel-1.2-1.2.M03.jar
|
100
|
-
- lib/neo4j/mapping/decl_relationship_dsl.rb
|
101
|
-
- lib/neo4j/mapping/node_mixin.rb
|
102
|
-
- lib/neo4j/mapping/has_n.rb
|
103
|
-
- lib/neo4j/mapping/relationship_mixin.rb
|
104
|
-
- lib/neo4j/mapping/class_methods/rule.rb
|
105
|
-
- lib/neo4j/mapping/class_methods/init_node.rb
|
106
|
-
- lib/neo4j/mapping/class_methods/property.rb
|
107
|
-
- lib/neo4j/mapping/class_methods/root.rb
|
108
|
-
- lib/neo4j/mapping/class_methods/init_rel.rb
|
109
|
-
- lib/neo4j/mapping/class_methods/relationship.rb
|
110
|
-
- lib/neo4j/index/indexer.rb
|
111
|
-
- lib/neo4j/index/lucene_query.rb
|
112
|
-
- lib/neo4j/index/indexer_registry.rb
|
113
|
-
- lib/neo4j/index/class_methods.rb
|
114
|
-
- lib/neo4j/index/index.rb
|
115
|
-
- README.rdoc
|
116
|
-
- CHANGELOG
|
117
|
-
- CONTRIBUTORS
|
118
|
-
- Gemfile
|
119
|
-
- neo4j.gemspec
|
120
|
-
has_rdoc: true
|
92
|
+
extra_rdoc_files:
|
93
|
+
- README.md
|
94
|
+
files:
|
95
|
+
- bin/neo4j-jars
|
96
|
+
- lib/neo4j/active_node/callbacks.rb
|
97
|
+
- lib/neo4j/active_node/has_n/decl_rel.rb
|
98
|
+
- lib/neo4j/active_node/has_n/nodes.rb
|
99
|
+
- lib/neo4j/active_node/has_n.rb
|
100
|
+
- lib/neo4j/active_node/identity.rb
|
101
|
+
- lib/neo4j/active_node/initialize.rb
|
102
|
+
- lib/neo4j/active_node/labels.rb
|
103
|
+
- lib/neo4j/active_node/persistence.rb
|
104
|
+
- lib/neo4j/active_node/property.rb
|
105
|
+
- lib/neo4j/active_node/rels.rb
|
106
|
+
- lib/neo4j/active_node/validations.rb
|
107
|
+
- lib/neo4j/active_node.rb
|
108
|
+
- lib/neo4j/railtie.rb
|
109
|
+
- lib/neo4j/version.rb
|
110
|
+
- lib/neo4j/wrapper.rb
|
111
|
+
- lib/neo4j.rb
|
112
|
+
- config/locales/en.yml
|
113
|
+
- config/neo4j/config.yml
|
114
|
+
- README.md
|
115
|
+
- CHANGELOG
|
116
|
+
- CONTRIBUTORS
|
117
|
+
- Gemfile
|
118
|
+
- neo4j.gemspec
|
121
119
|
homepage: http://github.com/andreasronge/neo4j/tree
|
122
120
|
licenses: []
|
123
|
-
|
121
|
+
metadata: {}
|
124
122
|
post_install_message:
|
125
|
-
rdoc_options:
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
version: 1.8.7
|
146
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
|
-
requirements:
|
148
|
-
- - ">"
|
149
|
-
- !ruby/object:Gem::Version
|
150
|
-
segments:
|
151
|
-
- 1
|
152
|
-
- 3
|
153
|
-
- 1
|
154
|
-
version: 1.3.1
|
123
|
+
rdoc_options:
|
124
|
+
- --quiet
|
125
|
+
- --title
|
126
|
+
- Neo4j.rb
|
127
|
+
- --line-numbers
|
128
|
+
- --main
|
129
|
+
- README.rdoc
|
130
|
+
- --inline-source
|
131
|
+
require_paths:
|
132
|
+
- lib
|
133
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - '>='
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: 1.9.1
|
138
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - '>'
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 1.3.1
|
155
143
|
requirements: []
|
156
|
-
|
157
144
|
rubyforge_project: neo4j
|
158
|
-
rubygems_version: 1.
|
145
|
+
rubygems_version: 2.1.5
|
159
146
|
signing_key:
|
160
|
-
specification_version:
|
161
|
-
summary: A graph database for
|
147
|
+
specification_version: 4
|
148
|
+
summary: A graph database for Ruby
|
162
149
|
test_files: []
|
163
|
-
|
150
|
+
has_rdoc: true
|