2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【個人メモ】Ruby on Rails チュートリアル 第3章

Posted at

Ruby on Railsチュートリアルで学んだ内容を個人的なメモとして簡単にまとめたものです

個人メモ

  • コントローラの生成コマンド
    rails g controller コントローラ名 アクション名
  • マイグレーションの変更を元に戻す
    rails db:rollback
  • テスト駆動開発(TDD:
    最初に「正しいコードがないと失敗するテスト」を書き、次に本編のコードを書いてそのテストがパスするようにする
  • assertion(アサーション)
    アクションをgetして正常に動作することを確認するテスト手法
  • テストの実行
    rails test
  • provideメソッド
    引数にてページのタイトルをviewごとに変更
  • yeildメソッド
    記述箇所に実際にタイトルが挿入される
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?