Merge pull request #1363 from johnpaulashenfelter/patch-1

Be consistent with bundle exec
This commit is contained in:
Robin Ward 2013-08-21 07:10:13 -07:00
commit 0d2b4aeb61
1 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,9 @@ to rails, you are likely much better off with our **[Discourse Vagrant Developer
## Before you start Rails ## Before you start Rails
1. `bundle install` 1. `bundle install`
2. `rake db:migrate` 2. `bundle exec rake db:migrate`
3. `rake db:test:prepare` 3. `bundle exec rake db:test:prepare`
4. `rake db:seed_fu` 4. `bundle exec rake db:seed_fu`
5. Try running the specs: `bundle exec rake autospec` 5. Try running the specs: `bundle exec rake autospec`
6. `bundle exec rails server` 6. `bundle exec rails server`