Sha256: 70d78f9bd5f0608f314760356b4e3e421d4cca36db35ad6128a38e7af833d7d6
Contents?: true
Size: 242 Bytes
Versions: 1
Compression:
Stored size: 242 Bytes
Contents
# frozen_string_literal: true module Nocode module Steps # Sleep for an arbitrary number of seconds. class Sleep < Step option :seconds def perform Kernel.sleep(seconds_option.to_f) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nocode-0.0.4 | lib/nocode/steps/sleep.rb |