0
0

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 3 years have passed since last update.

【Rails】homesコントローラーでビューのみ使用する場合(コントローラー記述なし/アクションのみ用意)

Posted at

#はじめに
コントローラーの処理は不要で、ビューのみ表示したい場合(主にトップページ)の簡潔な記述を残します。

#やったこと

app/controllers/homes_controller.rb
def top
end

いつもならこう書いていましたが、

app/controllers/homes_controller.rb
def top: end

わずかにですが、一行で書けるようになります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?