From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/tool/strip-rdoc.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 jni/ruby/tool/strip-rdoc.rb (limited to 'jni/ruby/tool/strip-rdoc.rb') diff --git a/jni/ruby/tool/strip-rdoc.rb b/jni/ruby/tool/strip-rdoc.rb new file mode 100755 index 0000000..1902cb5 --- /dev/null +++ b/jni/ruby/tool/strip-rdoc.rb @@ -0,0 +1,23 @@ +#!ruby + +ARGF.binmode +source = ARGF.read +source = source.gsub(%r{/\*([!*])((?!\*/).+?)\*/}m) do |comment| + marker, comment = $1, $2 + next "/**#{comment}*/" unless /^\s*\*\s?\-\-\s*$/ =~ comment + doxybody = nil + comment.each_line do |line| + if doxybody + if /^\s*\*\s?\+\+\s*$/ =~ line + break + end + doxybody << line + else + if /^\s*\*\s?--\s*$/ =~ line + doxybody = "\n" + end + end + end + "/*#{marker}#{doxybody}*/" +end +print source -- cgit v1.2.3