Sha256: 26b89216db5c9cb2ad0aed380646cfd2ac27a80011a9abba53a2ab8fe9a6a165
Contents?: true
Size: 622 Bytes
Versions: 50
Compression:
Stored size: 622 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionPointTowardsCharacter < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'point_towards\(' + CHAR_NAME_RE + '\)\s*$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) name = md2[2] name.strip! c = context.characters[name] return false unless c block = new(fields: { CHAR: name }) _, context.current_block = *add_child_or_create_character_new_block(context, md2[1], block) true end end end end
Version data entries
50 entries across 50 versions & 1 rubygems