diff options
| author | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-16 18:49:26 +0900 |
|---|---|---|
| committer | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-30 00:39:06 +0900 |
| commit | fcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch) | |
| tree | 64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/tool/strip-rdoc.rb | |
Fresh start
Diffstat (limited to 'jni/ruby/tool/strip-rdoc.rb')
| -rwxr-xr-x | jni/ruby/tool/strip-rdoc.rb | 23 |
1 files changed, 23 insertions, 0 deletions
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 |
