Skip to content

Instantly share code, notes, and snippets.

@peashutop
Created November 6, 2013 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peashutop/7337228 to your computer and use it in GitHub Desktop.
Save peashutop/7337228 to your computer and use it in GitHub Desktop.
with inject, no ceremony, just intention
def total_pony_count
farms.inject(0) do |counter, farm|
counter += farm.pony_count
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment