Created
November 3, 2017 04:00
-
-
Save edwinlab/f303d8e1c318d31d644d87250f386fb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'timeout' | |
| def a_method(iterations) | |
| Timeout::timeout(1) do # 1 second | |
| iterations.times { |i| print("#{i} "); sleep(0.1) } | |
| end | |
| rescue Timeout::Error | |
| print("TIMEOUT") | |
| ensure | |
| puts | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment