Skip to content

Commit

Permalink
Rename to monogid-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt committed Jul 26, 2010
1 parent 56b779e commit cb8630b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
18 changes: 11 additions & 7 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= mongoid_tree
= mongoid-tree

A tree structure for Mongoid documents using the materialized path pattern

Expand All @@ -8,17 +8,21 @@ A tree structure for Mongoid documents using the materialized path pattern

== Install

In order to get the latest development version of mongoid_tree:
To install mongoid_tree, simply add it to your Gemfile:

gem "mongoid_tree", :git => "git://github.com/benedikt/mongoid_tree"
gem "mongoid-tree"

In order to get the latest development version of mongoid-tree:

gem "mongoid-tree" :git => "git://github.com/benedikt/mongoid-tree"

Finally, run
You might want to add the <tt>:require => 'mongoid/tree'</tt> option as well and finally run

bundle install

== Usage

Read the API documentation at http://benedikt.github.com/mongoid_tree and take a look at the Mongoid::Tree module
Read the API documentation at http://benedikt.github.com/mongoid-tree and take a look at the Mongoid::Tree module

require 'mongoid/tree'

Expand All @@ -29,11 +33,11 @@ Read the API documentation at http://benedikt.github.com/mongoid_tree and take a

== Known issues

See http://github.com/benedikt/mongoid_tree/issues
See http://github.com/benedikt/mongoid-tree/issues

== Repository

See http://github.com/benedikt/mongoid_tree and feel free to fork it!
See http://github.com/benedikt/mongoid-tree and feel free to fork it!

== Copyright

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'rspec/core/rake_task'
require 'hanna/rdoctask'

spec = Gem::Specification.load("mongoid_tree.gemspec")
spec = Gem::Specification.load("mongoid-tree.gemspec")

RSpec::Core::RakeTask.new(:spec)

Expand Down
4 changes: 2 additions & 2 deletions mongoid_tree.gemspec → mongoid-tree.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Gem::Specification.new do |s|
s.name = 'mongoid_tree'
s.name = 'mongoid-tree'
s.version = '0.1'
s.platform = Gem::Platform::RUBY
s.authors = ['Benedikt Deicke']
s.email = ['[email protected]']
s.homepage = 'http://github.com/benedikt/mongoid_tree'
s.homepage = 'http://github.com/benedikt/mongoid-tree'
s.summary = 'A tree structure for Mongoid documents'
s.description = 'A tree structure for Mongoid documents using the materialized path pattern'

Expand Down

0 comments on commit cb8630b

Please sign in to comment.