Sha256: 73812e7f42ac4e47c8ff2a04e86dc39844095865832e38f9f70ad446959022ea
Contents?: true
Size: 271 Bytes
Versions: 50
Compression:
Stored size: 271 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class ControlBreak < Base blocknize '^\s*break\s*$', statement: true, inline: true def self.process_match_data(md, context) context.add_block(new) true end end end end
Version data entries
50 entries across 50 versions & 1 rubygems