2 # frozen_string_literal: true
4 # Filter for preventing Doxygen from processing RDoc comments.
5 # Used by the Doxygen template.
7 print ARGF.binmode.read.tap {|src|
8 src.gsub!(%r|(/\*[!*])(?:(?!\*/).)+?^\s*\*\s?\-\-\s*$(.+?\*/)|m) {
11 comment.sub!(%r|^\s*\*\s?\+\+\s*$.+?(\s*\*/)\z|m, '\\1')