Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Ruby on Rails | metric_fu | Rails Best Practices | simplify render in controllers

概要

simplify render in controllersへの対応

詳細

Controller内でのrender指定時にactionのみ指定する場合は、明示的にハッシュのキーを指定しなくても
よいので記述を簡潔にできる、という警告。

修正前

render :action => 'index' 

修正後

render 'index'