Sha256: dbf06790b38f77e96816957c6164552aeec7a9c0f98e6214a7be6d0bc14978cb
Contents?: true
Size: 474 Bytes
Versions: 34
Compression:
Stored size: 474 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class HardwareLedTurnOff < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'led\("(D(?:[2-9]|1[0-3]))"\).turn_off\s*$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) add_character_method_call_block(context, md2[1], new(fields: { PIN: md2[2] })) true end end end end
Version data entries
34 entries across 34 versions & 1 rubygems