From e1cc9e3078083ed319f630a733a904c5e4087f6b Mon Sep 17 00:00:00 2001 From: davidsulc Date: Sat, 26 Feb 2011 13:52:29 -0500 Subject: [PATCH] update readme --- README.rdoc | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.rdoc b/README.rdoc index 1845525..3542070 100644 --- a/README.rdoc +++ b/README.rdoc @@ -4,8 +4,12 @@ A trivial Rails 3 app using the SugarCRM gem. It will hopefully help to get you == How we got here - 1. `rails new sugar_on_rails_basic --skip-active-record # we don't a database here, but you might - 2. Add the sugarcrm gem to the Gemfile. The git repository was used in this case because we're on the bleeding edge: the Rails generator (used in a later step) isn't in the gem yet. Starting with gem version 0.9.12, you can simply use `gem 'sugarcrm'` in your gem file (i.e. no need to use the git repository) - 3. `bundle install` - 4. `rails g sugarcrm:config` - 5. Edit the configuration file in `config/sugarcrm.yml` to match your environment \ No newline at end of file +1. `rails new sugar_on_rails_basic --skip-active-record` (we don't a database here, but you might) +2. Add the sugarcrm gem to the Gemfile. The git repository was used in this case because we're on the bleeding edge: the Rails generator (used in a later step) isn't in the gem yet. Starting with gem version 0.9.12, you can simply use `gem 'sugarcrm'` in your gem file (i.e. no need to use the git repository) +3. `bundle install` +4. `rails g sugarcrm:config` +5. Edit the configuration file in `config/sugarcrm.yml` to match your environment + +You can see exactly what was done in each step by looking at the commit history (select "commits" button from menu on top of page). + +A simple controller and view were then added to show content in a view. \ No newline at end of file