30 lines
		
	
	
		
			659 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			659 B
		
	
	
	
		
			Ruby
		
	
	
	
require 'rake'
 | 
						|
require 'rake/clean'
 | 
						|
 | 
						|
CLOBBER.include('doc', '.yardoc')
 | 
						|
CLOBBER.uniq!
 | 
						|
 | 
						|
begin
 | 
						|
  require 'yard'
 | 
						|
  require 'yard/rake/yardoc_task'
 | 
						|
 | 
						|
  namespace :doc do
 | 
						|
    desc 'Generate Yardoc documentation'
 | 
						|
    YARD::Rake::YardocTask.new do |yardoc|
 | 
						|
      yardoc.name = 'yard'
 | 
						|
      yardoc.options = ['--verbose', '--markup', 'markdown']
 | 
						|
      yardoc.files = [
 | 
						|
        'lib/**/*.rb', 'ext/**/*.c', '-',
 | 
						|
        'README.md', 'CHANGELOG.md', 'LICENSE'
 | 
						|
      ]
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  desc 'Alias to doc:yard'
 | 
						|
  task 'doc' => 'doc:yard'
 | 
						|
rescue LoadError
 | 
						|
  # If yard isn't available, it's not the end of the world
 | 
						|
  desc 'Alias to doc:rdoc'
 | 
						|
  task 'doc' => 'doc:rdoc'
 | 
						|
end
 |