Mongoid graph
Undirected graph implementation for Mongoid
Installation
Add this line to your application's Gemfile:
gem 'mongoid-graph'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mongoid-graph
Usage
first_node = Node.new(node_index: 1)
second_node = Node.new(node_index: 2)
first_node.connect_to second_node
first_node.save!
second_node.save!
Node.neighbours_of(first_node).size.should == 1
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request