n4j 0.0.1
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.
- data/.gitignore +6 -0
- data/.rvmrc +2 -0
- data/Gemfile +6 -0
- data/README.rdoc +5 -0
- data/Rakefile +137 -0
- data/config/n4j.yml +7 -0
- data/lib/n4j.rb +46 -0
- data/lib/n4j/attributes.rb +48 -0
- data/lib/n4j/auto_relate.rb +41 -0
- data/lib/n4j/cypher.rb +45 -0
- data/lib/n4j/entity.rb +117 -0
- data/lib/n4j/field.rb +26 -0
- data/lib/n4j/node.rb +91 -0
- data/lib/n4j/populate.rb +22 -0
- data/lib/n4j/relationship.rb +47 -0
- data/lib/n4j/representation.rb +63 -0
- data/lib/n4j/request.rb +39 -0
- data/lib/n4j/traversal.rb +62 -0
- data/lib/n4j/version.rb +3 -0
- data/n4j.gemspec +26 -0
- data/neo4j_plugins/test-delete-db-extension-1.5.jar +0 -0
- data/tasks/.gitkeep +0 -0
- data/tasks/n4j.rake +125 -0
- data/templates/README.txt +16 -0
- data/templates/logging.properties +73 -0
- data/templates/neo4j-server-1.5.properties +53 -0
- data/templates/neo4j-server-1.6.properties +78 -0
- data/templates/neo4j-wrapper.conf +37 -0
- data/templates/neo4j.properties +9 -0
- data/templates/windows-wrapper-logging.properties +73 -0
- data/test/basics_test.rb +46 -0
- data/test/field_test.rb +19 -0
- data/test/test_helper.rb +12 -0
- metadata +121 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
Neo4j Configuration
|
2
|
+
=======================================
|
3
|
+
|
4
|
+
Neo4j configuration files.
|
5
|
+
|
6
|
+
* neo4j-server.properties -- runtime operational settings
|
7
|
+
* neo4j.properties -- database configuration
|
8
|
+
* neo4j-wrapper.conf -- environment and launch settings for Neo4j Server
|
9
|
+
* loggging.properties -- java.util.logging settings for Neo4j Server
|
10
|
+
* windows-wrapper-logging.properties -- java.util.logging settings for the windows service wrapper
|
11
|
+
|
12
|
+
References
|
13
|
+
----------
|
14
|
+
|
15
|
+
* [Neo4j Server Usage](/doc/neo4j-server.txt)
|
16
|
+
* [Java Logging Overview](http://download.oracle.com/javase/6/docs/technotes/guides/logging/overview.html)
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# Properties file which configures the operation of the JDK
|
2
|
+
# logging facility.
|
3
|
+
|
4
|
+
# The system will look for this config file, first using
|
5
|
+
# a System property specified at startup:
|
6
|
+
#
|
7
|
+
# >java -Djava.util.logging.config.file=myLoggingConfigFilePath
|
8
|
+
#
|
9
|
+
# If this property is not specified, then the config file is
|
10
|
+
# retrieved from its default location at:
|
11
|
+
#
|
12
|
+
# JDK_HOME/jre/lib/logging.properties
|
13
|
+
|
14
|
+
# Global logging properties.
|
15
|
+
# ------------------------------------------
|
16
|
+
# The set of handlers to be loaded upon startup.
|
17
|
+
# Comma-separated list of class names.
|
18
|
+
# (? LogManager docs say no comma here, but JDK example has comma.)
|
19
|
+
handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
|
20
|
+
|
21
|
+
# Default global logging level.
|
22
|
+
# Loggers and Handlers may override this level
|
23
|
+
# SERVERE, INFO, FINE, FINEST
|
24
|
+
.level=INFO
|
25
|
+
|
26
|
+
# Loggers
|
27
|
+
# ------------------------------------------
|
28
|
+
# Loggers are usually attached to packages.
|
29
|
+
# Here, the level for each package is specified.
|
30
|
+
# The global level is used by default, so levels
|
31
|
+
# specified here simply act as an override.
|
32
|
+
org.neo4j.server.level=INFO
|
33
|
+
|
34
|
+
# Handlers
|
35
|
+
# -----------------------------------------
|
36
|
+
|
37
|
+
# --- ConsoleHandler ---
|
38
|
+
# Override of global logging level
|
39
|
+
java.util.logging.ConsoleHandler.level=INFO
|
40
|
+
java.util.logging.ConsoleHandler.formatter=org.neo4j.server.logging.SimpleConsoleFormatter
|
41
|
+
java.util.logging.ConsoleHandler.filter=org.neo4j.server.logging.NeoLogFilter
|
42
|
+
|
43
|
+
# --- FileHandler ---
|
44
|
+
# Override of global logging level
|
45
|
+
java.util.logging.FileHandler.level=ALL
|
46
|
+
|
47
|
+
# Naming style for the output file:
|
48
|
+
# (The output file is placed in the directory
|
49
|
+
# defined by the "user.home" System property.)
|
50
|
+
# "/" the local pathname separator
|
51
|
+
# "%t" the system temporary directory
|
52
|
+
# "%h" the value of the "user.home" system property
|
53
|
+
# "%g" the generation number to distinguish rotated logs
|
54
|
+
# "%u" a unique number to resolve conflicts
|
55
|
+
# "%%" translates to a single percent sign "%"
|
56
|
+
java.util.logging.FileHandler.pattern=data/log/neo4j.%u.%g.log
|
57
|
+
|
58
|
+
# Specifies whether the FileHandler should append onto any existing files (defaults to false).
|
59
|
+
java.util.logging.FileHandler.append=true
|
60
|
+
|
61
|
+
# Limiting size of output file in bytes (10M):
|
62
|
+
java.util.logging.FileHandler.limit=10000000
|
63
|
+
|
64
|
+
# Number of output files to cycle through, by appending an
|
65
|
+
# integer to the base file name:
|
66
|
+
java.util.logging.FileHandler.count=10
|
67
|
+
|
68
|
+
# The name of the character set encoding to use (defaults to the default platform encoding).
|
69
|
+
# java.util.logging.FileHandler.encoding=
|
70
|
+
|
71
|
+
# Style of output (Simple or XML):
|
72
|
+
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
|
73
|
+
|
@@ -0,0 +1,53 @@
|
|
1
|
+
################################################################
|
2
|
+
# Neo4j configuration
|
3
|
+
#
|
4
|
+
################################################################
|
5
|
+
|
6
|
+
#***************************************************************
|
7
|
+
# Server configuration
|
8
|
+
#***************************************************************
|
9
|
+
|
10
|
+
# location of the database directory
|
11
|
+
org.neo4j.server.database.location=tmp/n4j/<%= @environment %>/data/graph.db
|
12
|
+
|
13
|
+
# http port (for all data, administrative, and UI access)
|
14
|
+
org.neo4j.server.webserver.port=<%= @port %>
|
15
|
+
|
16
|
+
# let the webserver only listen on the specified IP. Default
|
17
|
+
# is localhost (only accept local connections). Uncomment to allow
|
18
|
+
# any connection. Please see the security section in the neo4j
|
19
|
+
# manual before modifying this.
|
20
|
+
#org.neo4j.server.webserver.address=0.0.0.0
|
21
|
+
|
22
|
+
|
23
|
+
#*****************************************************************
|
24
|
+
# Administration client configuration
|
25
|
+
#*****************************************************************
|
26
|
+
|
27
|
+
# location of the servers round-robin database directory. possible values:
|
28
|
+
# - absolute path like /var/rrd
|
29
|
+
# - path relative to the server working directory like data/rrd
|
30
|
+
# - commented out, will default to the database data directory.
|
31
|
+
org.neo4j.server.webadmin.rrdb.location=data/rrd
|
32
|
+
|
33
|
+
# REST endpoint for the data API
|
34
|
+
# Note the / in the end is mandatory
|
35
|
+
org.neo4j.server.webadmin.data.uri=/db/data/
|
36
|
+
|
37
|
+
# REST endpoint of the administration API (used by Webadmin)
|
38
|
+
org.neo4j.server.webadmin.management.uri=/db/manage/
|
39
|
+
|
40
|
+
# Low-level graph engine tuning file
|
41
|
+
org.neo4j.server.db.tuning.properties=tmp/n4j/<%= @environment %>/neo4j.properties
|
42
|
+
|
43
|
+
|
44
|
+
#Comma separated list of JAXRS packages contains JAXRS Resoruce, one package name for each mountpoint.
|
45
|
+
#the listed package names will be loaded under the mountpoints specified, uncomment this line
|
46
|
+
#to mount the org.neo4j.examples.server.unmanaged.HelloWorldResource.java from neo4j-examples
|
47
|
+
#under /examples/unmanaged, resulting in a final URL of http://localhost:7474/examples/unmanaged/helloworld/{nodeId}
|
48
|
+
#org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.examples.server.unmanaged=/examples/unmanaged
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.server.extension.test.delete=/cleandb
|
53
|
+
org.neo4j.server.thirdparty.delete.key=all-gone
|
@@ -0,0 +1,78 @@
|
|
1
|
+
################################################################
|
2
|
+
# Neo4j configuration
|
3
|
+
#
|
4
|
+
################################################################
|
5
|
+
|
6
|
+
#***************************************************************
|
7
|
+
# Server configuration
|
8
|
+
#***************************************************************
|
9
|
+
|
10
|
+
# location of the database directory
|
11
|
+
org.neo4j.server.database.location=tmp/n4j/<%= @environment %>/data/graph.db
|
12
|
+
|
13
|
+
# let the webserver only listen on the specified IP. Default
|
14
|
+
# is localhost (only accept local connections). Uncomment to allow
|
15
|
+
# any connection. Please see the security section in the neo4j
|
16
|
+
# manual before modifying this.
|
17
|
+
#org.neo4j.server.webserver.address=0.0.0.0
|
18
|
+
|
19
|
+
#
|
20
|
+
# HTTP Connector
|
21
|
+
#
|
22
|
+
|
23
|
+
# Turn http-support on/off, mostly if you want your
|
24
|
+
# server accessible via https only.
|
25
|
+
org.neo4j.server.webserver.http.enabled=true
|
26
|
+
|
27
|
+
# http port (for all data, administrative, and UI access)
|
28
|
+
org.neo4j.server.webserver.port=<%= @port %>
|
29
|
+
|
30
|
+
#
|
31
|
+
# HTTPS Connector
|
32
|
+
#
|
33
|
+
|
34
|
+
# Turn https-support on/off
|
35
|
+
org.neo4j.server.webserver.https.enabled=true
|
36
|
+
|
37
|
+
# https port (for all data, administrative, and UI access)
|
38
|
+
org.neo4j.server.webserver.https.port=<%= @secure_port %>
|
39
|
+
|
40
|
+
# Certificate location (auto generated if the file does not exist)
|
41
|
+
org.neo4j.server.webserver.https.cert.location=tmp/n4j/<%= @environment %>/snakeoil.cert
|
42
|
+
|
43
|
+
# Private key location (auto generated if the file does not exist)
|
44
|
+
org.neo4j.server.webserver.https.key.location=tmp/n4j/<%= @environment %>/snakeoil.key
|
45
|
+
|
46
|
+
# Internally generated keystore (don't try to put your own
|
47
|
+
# keystore there, it will get deleted when the server starts)
|
48
|
+
org.neo4j.server.webserver.https.keystore.location=tmp/n4j/<%= @environment %>/keystore
|
49
|
+
|
50
|
+
#*****************************************************************
|
51
|
+
# Administration client configuration
|
52
|
+
#*****************************************************************
|
53
|
+
|
54
|
+
# location of the servers round-robin database directory. possible values:
|
55
|
+
# - absolute path like /var/rrd
|
56
|
+
# - path relative to the server working directory like data/rrd
|
57
|
+
# - commented out, will default to the database data directory.
|
58
|
+
org.neo4j.server.webadmin.rrdb.location=tmp/n4j/<%= @environment %>/data/rrd
|
59
|
+
|
60
|
+
# REST endpoint for the data API
|
61
|
+
# Note the / in the end is mandatory
|
62
|
+
org.neo4j.server.webadmin.data.uri=/db/data/
|
63
|
+
|
64
|
+
# REST endpoint of the administration API (used by Webadmin)
|
65
|
+
org.neo4j.server.webadmin.management.uri=/db/manage/
|
66
|
+
|
67
|
+
# Low-level graph engine tuning file
|
68
|
+
org.neo4j.server.db.tuning.properties=tmp/n4j/<%= @environment %>/neo4j.properties
|
69
|
+
|
70
|
+
|
71
|
+
#Comma separated list of JAXRS packages contains JAXRS Resoruce, one package name for each mountpoint.
|
72
|
+
#the listed package names will be loaded under the mountpoints specified, uncomment this line
|
73
|
+
#to mount the org.neo4j.examples.server.unmanaged.HelloWorldResource.java from neo4j-examples
|
74
|
+
#under /examples/unmanaged, resulting in a final URL of http://localhost:7474/examples/unmanaged/helloworld/{nodeId}
|
75
|
+
#org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.examples.server.unmanaged=/examples/unmanaged
|
76
|
+
|
77
|
+
org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.server.extension.test.delete=/cleandb
|
78
|
+
org.neo4j.server.thirdparty.delete.key=all-gone
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#********************************************************************
|
2
|
+
# JVM Parameters
|
3
|
+
#********************************************************************
|
4
|
+
|
5
|
+
wrapper.java.additional.1=-Dorg.neo4j.server.properties=tmp/n4j/<%= @environment %>/neo4j-server.properties
|
6
|
+
wrapper.java.additional.2=-Djava.util.logging.config.file=tmp/n4j/<%= @environment %>/logging.properties
|
7
|
+
|
8
|
+
# Uncomment the following line to enable garbage collection logging
|
9
|
+
#wrapper.java.additional.3=-Xloggc:data/log/neo4j-gc.log
|
10
|
+
|
11
|
+
# Initial Java Heap Size (in MB)
|
12
|
+
wrapper.java.initmemory=3
|
13
|
+
|
14
|
+
# Maximum Java Heap Size (in MB)
|
15
|
+
wrapper.java.maxmemory=64
|
16
|
+
|
17
|
+
#********************************************************************
|
18
|
+
# Wrapper settings
|
19
|
+
#********************************************************************
|
20
|
+
# Override default pidfile and lockfile
|
21
|
+
#wrapper.pidfile=../data/neo4j-server.pid
|
22
|
+
#wrapper.lockfile=../data/neo4j-server.lck
|
23
|
+
|
24
|
+
#********************************************************************
|
25
|
+
# Wrapper Windows NT/2000/XP Service Properties
|
26
|
+
#********************************************************************
|
27
|
+
# WARNING - Do not modify any of these properties when an application
|
28
|
+
# using this configuration file has been installed as a service.
|
29
|
+
# Please uninstall the service before modifying this section. The
|
30
|
+
# service can then be reinstalled.
|
31
|
+
|
32
|
+
# Name of the service
|
33
|
+
wrapper.name=neo4j
|
34
|
+
|
35
|
+
# User account to be used for linux installs. Will default to current
|
36
|
+
# user if not set.
|
37
|
+
wrapper.user=
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Default values for the low-level graph engine
|
2
|
+
#neostore.nodestore.db.mapped_memory=25M
|
3
|
+
#neostore.relationshipstore.db.mapped_memory=50M
|
4
|
+
#neostore.propertystore.db.mapped_memory=90M
|
5
|
+
#neostore.propertystore.db.strings.mapped_memory=130M
|
6
|
+
#neostore.propertystore.db.arrays.mapped_memory=130M
|
7
|
+
|
8
|
+
# Enable this to be able to upgrade a store from 1.4 -> 1.5
|
9
|
+
#allow_store_upgrade=true
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# Properties file which configures the operation of the JDK
|
2
|
+
# logging facility.
|
3
|
+
|
4
|
+
# The system will look for this config file, first using
|
5
|
+
# a System property specified at startup:
|
6
|
+
#
|
7
|
+
# >java -Djava.util.logging.config.file=myLoggingConfigFilePath
|
8
|
+
#
|
9
|
+
# If this property is not specified, then the config file is
|
10
|
+
# retrieved from its default location at:
|
11
|
+
#
|
12
|
+
# JDK_HOME/jre/lib/logging.properties
|
13
|
+
|
14
|
+
# Global logging properties.
|
15
|
+
# ------------------------------------------
|
16
|
+
# The set of handlers to be loaded upon startup.
|
17
|
+
# Comma-separated list of class names.
|
18
|
+
# (? LogManager docs say no comma here, but JDK example has comma.)
|
19
|
+
handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
|
20
|
+
|
21
|
+
# Default global logging level.
|
22
|
+
# Loggers and Handlers may override this level
|
23
|
+
# SERVERE, INFO, FINE, FINEST
|
24
|
+
.level=INFO
|
25
|
+
|
26
|
+
# Loggers
|
27
|
+
# ------------------------------------------
|
28
|
+
# Loggers are usually attached to packages.
|
29
|
+
# Here, the level for each package is specified.
|
30
|
+
# The global level is used by default, so levels
|
31
|
+
# specified here simply act as an override.
|
32
|
+
org.neo4j.server.level=INFO
|
33
|
+
|
34
|
+
# Handlers
|
35
|
+
# -----------------------------------------
|
36
|
+
|
37
|
+
# --- ConsoleHandler ---
|
38
|
+
# Override of global logging level
|
39
|
+
java.util.logging.ConsoleHandler.level=INFO
|
40
|
+
java.util.logging.ConsoleHandler.formatter=org.neo4j.server.logging.SimpleConsoleFormatter
|
41
|
+
java.util.logging.ConsoleHandler.filter=org.neo4j.server.logging.NeoLogFilter
|
42
|
+
|
43
|
+
# --- FileHandler ---
|
44
|
+
# Override of global logging level
|
45
|
+
java.util.logging.FileHandler.level=ALL
|
46
|
+
|
47
|
+
# Naming style for the output file:
|
48
|
+
# (The output file is placed in the directory
|
49
|
+
# defined by the "user.home" System property.)
|
50
|
+
# "/" the local pathname separator
|
51
|
+
# "%t" the system temporary directory
|
52
|
+
# "%h" the value of the "user.home" system property
|
53
|
+
# "%g" the generation number to distinguish rotated logs
|
54
|
+
# "%u" a unique number to resolve conflicts
|
55
|
+
# "%%" translates to a single percent sign "%"
|
56
|
+
java.util.logging.FileHandler.pattern=data/log/windows-wrapper.%u.%g.log
|
57
|
+
|
58
|
+
# Specifies whether the FileHandler should append onto any existing files (defaults to false).
|
59
|
+
java.util.logging.FileHandler.append=true
|
60
|
+
|
61
|
+
# Limiting size of output file in bytes (10M):
|
62
|
+
java.util.logging.FileHandler.limit=10000000
|
63
|
+
|
64
|
+
# Number of output files to cycle through, by appending an
|
65
|
+
# integer to the base file name:
|
66
|
+
java.util.logging.FileHandler.count=10
|
67
|
+
|
68
|
+
# The name of the character set encoding to use (defaults to the default platform encoding).
|
69
|
+
# java.util.logging.FileHandler.encoding=
|
70
|
+
|
71
|
+
# Style of output (Simple or XML):
|
72
|
+
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
|
73
|
+
|
data/test/basics_test.rb
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class N4jTest < ActiveSupport::TestCase
|
4
|
+
# test "the truth" do
|
5
|
+
# assert true
|
6
|
+
# end
|
7
|
+
|
8
|
+
test "find reference node" do
|
9
|
+
service_root = GenericNode.service_root
|
10
|
+
assert service_root.persisted?
|
11
|
+
end
|
12
|
+
|
13
|
+
test "node is created and can be retrieved" do
|
14
|
+
node = create_node
|
15
|
+
assert node == GenericNode.find_by_path(node.path)
|
16
|
+
end
|
17
|
+
|
18
|
+
test "create a node related to the model root" do
|
19
|
+
node = create_node
|
20
|
+
model_root = node.class.model_root
|
21
|
+
assert model_root.relationships.collect(&:end).include?(node)
|
22
|
+
end
|
23
|
+
|
24
|
+
test "find relationships (and make sure cache doesn't interfere)" do
|
25
|
+
model_root = create_node.class.model_root
|
26
|
+
assert_equal 2, model_root.relationships.length
|
27
|
+
assert_equal 1, model_root.relationships('outgoing_relationships').length
|
28
|
+
end
|
29
|
+
|
30
|
+
test "new_relationships cleared on save" do
|
31
|
+
node = new_node
|
32
|
+
assert_equal 1, node.new_relationships.length
|
33
|
+
assert node.save
|
34
|
+
assert_equal 0, node.new_relationships.length
|
35
|
+
end
|
36
|
+
|
37
|
+
def new_node(opts = {})
|
38
|
+
GenericNode.new({:test => 'foo'}.merge(opts))
|
39
|
+
end
|
40
|
+
|
41
|
+
def create_node(opts = {})
|
42
|
+
node = new_node(opts)
|
43
|
+
node.save
|
44
|
+
node
|
45
|
+
end
|
46
|
+
end
|
data/test/field_test.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class N4jTest < ActiveSupport::TestCase
|
4
|
+
class NodeWithFields
|
5
|
+
include N4j::Entity
|
6
|
+
include N4j::Node
|
7
|
+
|
8
|
+
field :foo
|
9
|
+
end
|
10
|
+
|
11
|
+
test "use field to set data" do
|
12
|
+
node = NodeWithFields.new({})
|
13
|
+
assert node.foo = 'hi'
|
14
|
+
assert node.foo == 'hi'
|
15
|
+
|
16
|
+
assert_equal node.data['foo'], 'hi'
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: n4j
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sam Schenkman-Moore
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-02-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rest-client
|
16
|
+
requirement: &70190202311320 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70190202311320
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: activesupport
|
27
|
+
requirement: &70190202310600 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70190202310600
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: activemodel
|
38
|
+
requirement: &70190202310180 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70190202310180
|
47
|
+
description: A little spiked out thing.
|
48
|
+
email:
|
49
|
+
- samsm@samsm.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- .gitignore
|
55
|
+
- .rvmrc
|
56
|
+
- Gemfile
|
57
|
+
- README.rdoc
|
58
|
+
- Rakefile
|
59
|
+
- config/n4j.yml
|
60
|
+
- lib/n4j.rb
|
61
|
+
- lib/n4j/attributes.rb
|
62
|
+
- lib/n4j/auto_relate.rb
|
63
|
+
- lib/n4j/cypher.rb
|
64
|
+
- lib/n4j/entity.rb
|
65
|
+
- lib/n4j/field.rb
|
66
|
+
- lib/n4j/node.rb
|
67
|
+
- lib/n4j/populate.rb
|
68
|
+
- lib/n4j/relationship.rb
|
69
|
+
- lib/n4j/representation.rb
|
70
|
+
- lib/n4j/request.rb
|
71
|
+
- lib/n4j/traversal.rb
|
72
|
+
- lib/n4j/version.rb
|
73
|
+
- n4j.gemspec
|
74
|
+
- neo4j_plugins/test-delete-db-extension-1.5.jar
|
75
|
+
- tasks/.gitkeep
|
76
|
+
- tasks/n4j.rake
|
77
|
+
- templates/README.txt
|
78
|
+
- templates/logging.properties
|
79
|
+
- templates/neo4j-server-1.5.properties
|
80
|
+
- templates/neo4j-server-1.6.properties
|
81
|
+
- templates/neo4j-wrapper.conf
|
82
|
+
- templates/neo4j.properties
|
83
|
+
- templates/windows-wrapper-logging.properties
|
84
|
+
- test/basics_test.rb
|
85
|
+
- test/field_test.rb
|
86
|
+
- test/test_helper.rb
|
87
|
+
- tmp/pids/.gitkeep
|
88
|
+
homepage: ''
|
89
|
+
licenses: []
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ! '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
segments:
|
101
|
+
- 0
|
102
|
+
hash: -470035939369030678
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ! '>='
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
hash: -470035939369030678
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project: n4j
|
114
|
+
rubygems_version: 1.8.10
|
115
|
+
signing_key:
|
116
|
+
specification_version: 3
|
117
|
+
summary: Help using Neo4j Rest server.
|
118
|
+
test_files:
|
119
|
+
- test/basics_test.rb
|
120
|
+
- test/field_test.rb
|
121
|
+
- test/test_helper.rb
|