From 4580394abbf78cdb1869100b0df61c7613d8669f Mon Sep 17 00:00:00 2001 From: tenderlove Date: Wed, 10 Jul 2013 18:22:52 +0000 Subject: * tool/probes_to_wiki.rb: adding a script to convert probes.d to wiki format for easy wiki updates. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/probes_to_wiki.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tool/probes_to_wiki.rb (limited to 'tool') diff --git a/tool/probes_to_wiki.rb b/tool/probes_to_wiki.rb new file mode 100644 index 0000000000..75b263aaaf --- /dev/null +++ b/tool/probes_to_wiki.rb @@ -0,0 +1,16 @@ +### +# Converts the probes.d file to redmine wiki format. Usage: +# +# ruby probes.d + +File.read(ARGV[0]).scan(/\/\*.*?\*\//m).grep(/ruby/).each do |comment| + comment.gsub!(/^(\/\*|[ ]*)|\*\/$/, '').strip! + puts + comment.each_line.each_with_index do |line, i| + if i == 0 + puts "=== #{line.chomp}" + else + puts line.gsub(/`([^`]*)`/, '(({\1}))') + end + end +end -- cgit v1.2.3