普通にeachしてifしたら、rubocop様から"Use next to skip iteration."とのご指導を頂いた。
items.each do |item|
if item
# my stuff with item
end
end
どうもrubocop様は、each内のif..endよりnextでのguard clauseがお気に入りのようである。
下記のように修正したら喜んで頂いた。
items.each do |item|
next unless item
# my stuff with item
end
独り言
javaエンジニアの常識がrubyでは非常識ですね。ご指導、ありがとうございました!