今日もRails作業メモ
Ruby on Railsで簡単なブログアプリを作成。
$ rails new sample_app_0819
# Projectを作成
$ cd sample_app_0819/
$ emacs Gemfile
# gem 'therubyracer' 部分のコメントアウトを削除して gem 'io-console' 追加
$ bundle exec rails g scaffold book title:string memo:text
# scaffoldでbook作成
$ bundle exec rake db:migrate
# データベースに反映
$ bundle exec rails s
# サーバー起動
コメント
コメントを投稿