Skip to content

Instantly share code, notes, and snippets.

@perspectivezoom
Created June 15, 2012 19:12
Show Gist options
  • Select an option

  • Save perspectivezoom/2938244 to your computer and use it in GitHub Desktop.

Select an option

Save perspectivezoom/2938244 to your computer and use it in GitHub Desktop.
class Array
def new_each
0.upto(self.length-1) do |index|
yield(self[index])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment