Sha256: ea7e68683ac0e03263bba467faff842902e1e5313a238b585bb7c7abc1e5a3ed
Contents?: true
Size: 536 Bytes
Versions: 69
Compression:
Stored size: 536 Bytes
Contents
module RubyToBlock module Block class EventsOnKeyPushOrDown < CharacterEvent # rubocop:disable LineLength blocknize '^\s*' + CHAR_RE + 'on\(:key_(down|push),\s*([^),]+)\)\s+do\s*$', statement: true, indent: true # rubocop:enable LineLength def self.process_match_data(md, context) md2 = regexp.match(md[type]) add_character_event_blocks(context, md2[1], new(fields: { KEY: md2[3], POD: md2[2] })) true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems