GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Tumblr is a simple Ruby script that aggregates RSS feeds into a "tumblelog"-style format, in static files.
Homepage: http://tumblr.rubyforge.org/
Clone URL: git://github.com/willcodeforfoo/tumblr.git
tumblr / Rakefile
100644 17 lines (14 sloc) 0.473 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rake/rdoctask'
require 'echoe'
 
Echoe.new('tumblr')
 
require 'rake/rdoctask'
 
Rake::RDocTask.new do |rdoc|
  files = ['README', 'LICENSE', 'CHANGELOG', 'TODO',
           'lib/**/*.rb', 'doc/**/*.rdoc', 'test/*.rb', 'bin/**/*.rb']
  rdoc.rdoc_files.add(files)
  rdoc.main = 'README'
  rdoc.title = 'tumblr'
  rdoc.template = '/Library/Ruby/Gems/1.8/gems/allison-2.0.3/lib/allison'
  rdoc.rdoc_dir = 'doc'
  rdoc.options << '--line-numbers' << '--inline-source'
end