kamui/retriable

View on GitHub
lib/retriable/core_ext/kernel.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
83%
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