added 'bundle install' command to h4. Create the Basic Application

This commit is contained in:
Andrew Ferk
2010-09-18 00:26:49 -05:00
parent dfebdb1b03
commit 0c6ac67d2f

View File

@@ -39,6 +39,7 @@ The examples in this guide require that you have a working rails application. T
gem install rails
rails new yaffle_guide
cd yaffle_guide
bundle install
rails generate scaffold bird name:string
rake db:migrate
rails server