Skip to content

Instantly share code, notes, and snippets.

@chaserx
Created July 17, 2013 20:25
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 chaserx/6024124 to your computer and use it in GitHub Desktop.
Save chaserx/6024124 to your computer and use it in GitHub Desktop.
Parallel Each
# $ gem install peach
# $ irb
1.9.3-p448 :001 > require 'peach'
=> true
1.9.3-p448 :002 > ['a', 'b', 'c'].peach do |p|
1.9.3-p448 :003 > puts p
1.9.3-p448 :004?> end
a
cb
=> ["a", "b", "c"]
1.9.3-p448 :005 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment