Skip to content

Instantly share code, notes, and snippets.

@jikkujose
Last active August 29, 2015 14:23
Show Gist options
  • Save jikkujose/b5764133979c54a0b383 to your computer and use it in GitHub Desktop.
Save jikkujose/b5764133979c54a0b383 to your computer and use it in GitHub Desktop.
Ruby pipeline
# Original
movies.group_by do |movie|
movie.genre
end.map do |month, list|
[month, list.size]
end.sort_by(&:last).reverse
# Alternative
movies
.group_by { |movie| movie.genre }
.map { |month, list| [month, list.size] }
.sort_by(&:last)
.reverse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment