README.md in neoid-0.1.1 vs README.md in neoid-0.1.2
- old
+ new
@@ -13,19 +13,19 @@
**Important: Heroku Support is not available because Herokud doesn't support Gremlin. So until further notice, easiest way is to self host a Neo4j on EC2 in the same zone, and connect from your dyno to it**
## Changelog
-[See Changelog](https://github.com/elado/neoid/blob/master/CHANGELOG.md)
+[See Changelog](https://github.com/elado/neoid/blob/master/CHANGELOG.md). Including some breaking changes (and solutions) from previos versions.
## Installation
Add to your Gemfile and run the `bundle` command to install it.
```ruby
-gem 'neoid', '~> 0.1'
+gem 'neoid', '~> 0.1.1'
```
**Requires Ruby 1.9.2 or later.**
## Usage
@@ -215,10 +215,10 @@
#### Finding all nodes of type
If Subreferences are enabled, you can get the subref node and then get all attached nodes:
```ruby
-Neoid.ref_node.outgoing('users_subref').first.outgoing('users_subref').to_a
+Neoid.ref_node.outgoing('users_subref').first.outgoing('users').to_a
# => this, according to Neography, returns an array of Neography::Node so no conversion is needed
```
### Gremlin Example: