rake/rdoc.rb
author Michael Granger <mgranger@laika.com>
Wed, 06 Aug 2008 17:32:19 +0000
changeset 7 c0498b8148c5
parent 5 804e1c2b9a40
child 8 308f7dc97753
permissions -rw-r--r--
Trying to fix the build by requiring the Darkfish-Rdoc gem.

# 
# RDoc Rake tasks
# $Id$
# 

BEGIN {
	require 'pathname'
	basedir = Pathname.new( __FILE__ ).dirname.parent
	docsdir = basedir + 'docs'
	
	$LOAD_PATH << docsdir.to_s
}

require 'rake/rdoctask'

gem 'darkfish-rdoc', '>= 1.1.0'

### Task: rdoc
Rake::RDocTask.new do |rdoc|
	rdoc.rdoc_dir = 'docs/api'
	rdoc.title    = "%s -- %s" % [ GEMSPEC.name, GEMSPEC.summary ]

	rdoc.options += [
		'-w', '4',
		'-SHN',
		'-i', BASEDIR.to_s,
		'-f', 'darkfish',
		'-m', 'README',
		'-W', 'http://opensource.laika.com/browser/ruby-ezmlm/trunk/'
	  ]
	
	rdoc.rdoc_files.include 'README'
	rdoc.rdoc_files.include LIB_FILES.collect {|f| f.relative_path_from(BASEDIR).to_s }
end