From 11d2cd2b45c38aabd5978c5e540d0a4c9b079f42 Mon Sep 17 00:00:00 2001 From: Jim Menard Date: Tue, 3 Feb 2009 12:16:33 -0500 Subject: [PATCH] example docs --- README.rdoc | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.rdoc b/README.rdoc index 1347b07..248af2c 100644 --- a/README.rdoc +++ b/README.rdoc @@ -11,7 +11,8 @@ Start by reading the XGen::Mongo::Driver::Mongo and XGen::Mongo::Driver::DB documentation, then move on to XGen::Mongo::Driver::Collection and XGen::Mongo::Driver::Cursor. -A quick code sample: +Here is a quick code sample. See the files in the "examples" subdirectory for +many more. require 'mongo' @@ -49,17 +50,22 @@ you can install it as a gem from the source by typing $ rake gem:install -= Demo += Examples -You can see and run the examples if you've downloaded the source. Mongo must -be running, of course. +There are many examples in the "examples" subdirectory. Samples include using +the driver and using the GridFS class GridStore. Mongo must be running for +these examples to work, of course. +Here's how to start mongo and run the "simple.rb" example: + + $ cd path/to/mongo + $ ./mongod run + ... then in another window ... + $ cd path/to/mongo-ruby-driver $ ruby examples/simple.rb See also the test code, especially tests/test_db_api.rb. -For the GridFS class GridStore, see the tests. - = The Driver