I wanted to use each_with_index on my group_by but it wasnt working right.

Ruby just requires you to wrap some parameters in parenthesis


@posts.group_by(&:category).each_with_index do |(category, posts), index|
  # do work
end


Related External Links: