From 0ec72616a931ec2527744247dded30d55ad0dd8e Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Thu, 28 May 2009 08:00:34 +0100 Subject: [PATCH] Mark down code in numbered list. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c99a5ecc..408b136c 100644 --- a/README.md +++ b/README.md @@ -125,17 +125,17 @@ And on again like this: 1. Install PaperTrail either as a gem or as a plugin: - config.gem 'airblade-paper_trail', :lib => 'paper_trail', :source => 'http://gems.github.com' + `config.gem 'airblade-paper_trail', :lib => 'paper_trail', :source => 'http://gems.github.com'` - script/plugin install git://github.com/airblade/paper_trail.git + `script/plugin install git://github.com/airblade/paper_trail.git` 2. Generate a migration which wll add a `versions` table to your database. - script/generate paper_trail + `script/generate paper_trail` 3. Run the migration. - rake db:migrate + `rake db:migrate` 4. Add `has_paper_trail` to the models you want to track.