mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
17 lines
379 B
Ruby
17 lines
379 B
Ruby
|
###
|
||
|
# 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
|