module TwitterRetry

Constants

DEFAULT_IGNORABLE_ERRORS
DEFAULT_RETRYABLE_ERRORS
VERSION

Public Class Methods

config() click to toggle source

@return [TwitterRetry::Config]

# File lib/twitter_retry.rb, line 10
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source

@yieldparam [TwitterRetry::Config]

# File lib/twitter_retry.rb, line 15
def self.configure
  yield config if block_given?
end