Stuff.new().each do |item|
puts item
In idiomatic ruby, we drop this parenthesis, so the code will look like Stuff.new.each ...
Stuff.new().each do |item|
endIn idiomatic ruby, we drop this parenthesis, so the code will look like Stuff.new.each ...