Method: Bundler::Retry#attempt

Defined in:
lib/bundler/retry.rb

#attempt(&block) ⇒ Object Also known as: attempts

[View source]

26
27
28
29
30
31
32
# File 'lib/bundler/retry.rb', line 26

def attempt(&block)
  @current_run = 0
  @failed      = false
  @error       = nil
  run(&block) while keep_trying?
  @result
end