From 55a31e549e022bf70500c9a89323e7d0363695a8 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Wed, 9 Feb 2011 10:55:50 +0000 Subject: [PATCH] Add 'bundle exec' to installation instructions. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 757f9fce..582465bd 100644 --- a/README.md +++ b/README.md @@ -494,11 +494,11 @@ Over time your `versions` table will grow to an unwieldy size. Because each ver 2. Generate a migration which will add a `versions` table to your database. - `rails generate paper_trail:install` + `bundle exec rails generate paper_trail:install` 3. Run the migration. - `rake db:migrate` + `bundle exec rake db:migrate` 4. Add `has_paper_trail` to the models you want to track.