3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails on Railsにおける命名規則

Posted at

#目的
Ruby on Railsを使ってコントローラーやモデルを作成する際の命名規則を備忘録のためにまとめておく

#命名規則
######コントローラー

命名
コントローラー名 tasks
コントローラークラス名 TaskController
ファイル名 tasks_controller.rb

######モデル

命名
モデル名 task
モデルクラス名 Task
モデルファイル名 task.rb
テーブル名 tasks

#ポイント
コントローラーを作成するとき、コントローラー名は複数形
モデルを作成するとき、コントローラー名は単数形

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?