mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* benchmark/gc/gcbench.rb: moved from tool/gcbench.rb. * benchmark/gc/hash(1|2).rb: ditto. * benchmark/gc/rdoc.rb: ditto. * benchmark/gc/null.rb: added. * common.mk: fix rule. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			341 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			341 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rdoc/rdoc'
 | 
						|
require 'tmpdir'
 | 
						|
 | 
						|
srcdir = File.expand_path('../..', __dir__)
 | 
						|
 | 
						|
Dir.mktmpdir('rdocbench-'){|d|
 | 
						|
  dir = File.join(d, 'rdocbench')
 | 
						|
  args = %W(--root #{srcdir} --page-dir #{srcdir}/doc --encoding=UTF-8 --no-force-update --all --ri --debug --quiet #{srcdir})
 | 
						|
  args << '--op' << dir
 | 
						|
 | 
						|
  r = RDoc::RDoc.new
 | 
						|
  r.document args
 | 
						|
}
 |