To create nodes in Neo4j with the Neo4j.rb gem, for an empty database, you'd first define the model class as seen in the examples here: http://neo4jrb.readthedocs.io/en/7.2.x/ActiveNode.html
Let's say you have a work project with an existing Neo4j database with an existing schema, nodes, & relationships. What would be the "Rubyist" way to generate models from the schema of an existing Neo4j database? The end goal would be to retrieve and edit existing the nodes and relationships using Neo4j.rb.