README.rdoc in neo4jr-simple-0.1.0 vs README.rdoc in neo4jr-simple-0.1.3
- old
+ new
@@ -19,12 +19,13 @@
2. Install Jruby using rvm: rvm install jruby
3. Switch ruby to JRuby: rvm use jruby
== Getting Started
+* {gem install neo4jr-simple} [http://gemcutter.org/gems/neo4jr-simple]
+* {Neo4j API Docs} [http://api.neo4j.org/current/org/neo4j/api/core/package-summary.html]
* functional_example_spec includes examples of basic operations in neo4j like creating, retrieving and updating nodes along with simple traversal examples.
-* Neo4j API: http://api.neo4j.org/current/org/neo4j/api/core/package-summary.html
Basic Node creation:
Neo4jr::DB.execute do |neo|
node = neo.createNode
@@ -45,23 +46,27 @@
order = Neo4jr::Order::BREADTH_FIRST
stop_when = Neo4jr::StopEvaluator::END_OF_GRAPH
return_when = Neo4jr::ReturnableEvaluator::ALL
relationships = Neo4jr::RelationshipType.outgoing(:acted_in)
- traverser = philip_seymour_hoffman.traverse(order, stop_when, return_when, relationships_of_type)
+ traverser = philip_seymour_hoffman.traverse(order, stop_when, return_when, relationships)
traverser.each do |node|
#...
end
end
+Use command line shell to query and modify the graph:
+ neosh -path <path_to_neo_db>
== Contributors
====Matthew Deiters
* Twitter : http://twitter.com/mdeiters
* GitHub : https://github.com/mdeiters
* LinkedIn : http://www.linkedin.com/in/matthewdeiters
* Blog : http://www.theagiledeveloper.com
-
-== Copyright
+
+====Heinrich Klobuczek
+* GitHub : https://github.com/klobuczek
+* LinkedIn : http://www.linkedin.com/pub/heinrich-klobuczek/0/a71/39b
Copyright (c) 2009 Matthew Deiters. See LICENSE for details.
\ No newline at end of file