Top Level Namespace
Defined Under Namespace
Instance Method Summary collapse
Instance Method Details
#try3times ⇒ Object
46 47 48 49 50 51 52 53 54 |
# File 'lib/sent/main.rb', line 46 def try3times try = 0 begin yield rescue try += 1 retry if try <= 3 end end |