Class: Tap::Tasks::Sleep

Inherits:
Tap::Task
  • Object
show all
Defined in:
lib/tap/tasks/sleep.rb

Overview

:startdoc::task sleep

Sleeps for the specified duration.

Instance Method Summary collapse

Instance Method Details

#call(input) ⇒ Object



11
12
13
14
# File 'lib/tap/tasks/sleep.rb', line 11

def call(input)
  sleep duration
  super
end