This is a collection Ruby idioms that we adopted in our coding style. This is the style in which Futureworkz recommends for greater readability between coders.
We highly discourage usage of loops. Instead we prefer block iterator methods.
products = Products.all
products.each do |product|
puts product.title
end