diff options
| author | mokha <mokha@cisco.com> | 2019-04-15 11:32:08 -0600 |
|---|---|---|
| committer | mokha <mokha@cisco.com> | 2019-04-15 11:32:08 -0600 |
| commit | 849f4782b6830c7283ba947c16a67e941efaed43 (patch) | |
| tree | a9258a9b9571768378b44f884467dd8f7e33ec52 | |
| parent | 95b4ff0f7f489e62a70cbafaf044019cacf54204 (diff) | |
override Kernel#sleep
| -rw-r--r-- | lib/baku.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/baku.rb b/lib/baku.rb index 83aabc8..eb65f48 100644 --- a/lib/baku.rb +++ b/lib/baku.rb @@ -2,5 +2,9 @@ require "baku/version" module Baku class Error < StandardError; end - # Your code goes here... +end + +module Kernel + def sleep(*args) + end end |
