module Typhoeus::Pool

def self.with_easy(&block)

Other tags:
    Example: Use easy. -
def self.with_easy(&block)
  easy = get
  yield easy
ensure
  release(easy) if easy
end