mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9e2fc969e2
* tool/probes_to_wiki.rb: fix usage comment. use Enumerable#grep which yields each elements to reduce unnecessary array. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
392 B
Ruby
16 lines
392 B
Ruby
###
|
|
# Converts the probes.d file to redmine wiki format. Usage:
|
|
#
|
|
# ruby tool/probes_to_wiki.rb probes.d
|
|
|
|
File.read(ARGV[0]).scan(/\/\*.*?\*\//m).grep(/ruby/) do |comment|
|
|
comment.gsub!(/^(\/\*|[ ]*)|\*\/$/, '').strip!
|
|
puts
|
|
comment.each_line.with_index do |line, i|
|
|
if i == 0
|
|
puts "=== #{line.chomp}"
|
|
else
|
|
puts line.gsub(/`([^`]*)`/, '(({\1}))')
|
|
end
|
|
end
|
|
end
|