Tbpgr Blog

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

Ruby on Rails | metric_fu | Rails Best Practices | use query attribute

概要

use query attributeへの対応

詳細

Railsでモデルの属性に対して、blank?やpresent?を利用する際は
以下のように記述を省略できる

model.column?

修正前

if model.column.blank?
if model.column.present?

修正後

unless model.column?
if model?