Sha256: d0d43d2ee84be12650b6c32d884d6e79a0cc5760c6f63de172aacef523cf33b7
Contents?: true
Size: 255 Bytes
Versions: 5
Compression:
Stored size: 255 Bytes
Contents
require_relative "../../retriable" module Kernel def retriable(opts = {}, &block) Retriable.retriable(opts, &block) end def retriable_with_context(context_key, opts = {}, &block) Retriable.with_context(context_key, opts, &block) end end
Version data entries
5 entries across 5 versions & 3 rubygems