Sha256: 0791471c02c94601633d1ec59d6ba0eab3a542a4a84ba7a136cd8a9e19f7eee5
Contents?: true
Size: 345 Bytes
Versions: 69
Compression:
Stored size: 345 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class RubyComment < Base blocknize '^\s*\#\ (.*)$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) block = new(fields: { COMMENT: md2[1] }) context.add_block(block) true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems