Skip to content

Instantly share code, notes, and snippets.

@johana-star
Last active December 18, 2015 16:09
Show Gist options
  • Save johana-star/5809776 to your computer and use it in GitHub Desktop.
Save johana-star/5809776 to your computer and use it in GitHub Desktop.
class Worker
def self.work(number = 1, &job)
result = nil
number.times { result = job.call }
result
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment