Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save perspectivezoom/2938192 to your computer and use it in GitHub Desktop.
class Array
def new_collect
ar = []
self.each do |i|
ar << yield(i)
end
ar
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment