From ab6158454929aa89f1d622ff7c8056c24a3135c1 Mon Sep 17 00:00:00 2001 From: John Paul Ashenfelter Date: Tue, 20 Aug 2013 14:42:10 -0400 Subject: [PATCH] Be consistent with bundle exec You need bundle exec for all of the commands, not just items 5 and 6 --- docs/DEVELOPER-ADVANCED.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md index 8c073836afa..bd01d378bd8 100644 --- a/docs/DEVELOPER-ADVANCED.md +++ b/docs/DEVELOPER-ADVANCED.md @@ -18,9 +18,9 @@ to rails, you are likely much better off with our **[Discourse Vagrant Developer ## Before you start Rails 1. `bundle install` -2. `rake db:migrate` -3. `rake db:test:prepare` -4. `rake db:seed_fu` +2. `bundle exec rake db:migrate` +3. `bundle exec rake db:test:prepare` +4. `bundle exec rake db:seed_fu` 5. Try running the specs: `bundle exec rake autospec` 6. `bundle exec rails server`