Sha256: 4ae4734c09e52c277937880a4f7ddcaab3d4c70064e5a1f40409fc4573f04bd7
Contents?: true
Size: 399 Bytes
Versions: 69
Compression:
Stored size: 399 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class ControlSleep < Base blocknize '^\s*sleep\((.+)\)\s*$', statement: true, inline: true def self.process_match_data(md, context) block = new context.add_block(block) md2 = regexp.match(md[type]) process_value_string(context, block, md2[1], :SEC) true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems