Filled out the project, added Ezmlm module + spec.
This commit is contained in:
parent
4b12c97f6b
commit
00d3974363
15 changed files with 1548 additions and 0 deletions
25
rake/rdoc.rb
Normal file
25
rake/rdoc.rb
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#
|
||||
# RDoc Rake tasks
|
||||
# $Id$
|
||||
#
|
||||
|
||||
require 'rake/rdoctask'
|
||||
|
||||
### 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue