A simple ROR application that uses mongoid to connnect to mongoDB.
To provide a step-by-step tutorial (through commit history) of how to build a ROR application that is backed by mongoDB.
- to create the app
rails new guestbook --skip-active-record
- to create the mongoid.yml
rails generate mongoid:config
- to create the Guest model
rails generate scaffold Guest name:string