Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Created April 5, 2011 23:01
Show Gist options
  • Select an option

  • Save zeroeth/904765 to your computer and use it in GitHub Desktop.

Select an option

Save zeroeth/904765 to your computer and use it in GitHub Desktop.
def awesomofier(count, &block)
awesome_tank = []
count.times do |n|
awesome_tank << yield(n)
end
awesome_tank
end
awesomofier(10) {|n| "awesome_#{n}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment