public
Description: components + scaffolding == presentations
Homepage: http://codelevy.com/
Clone URL: git://github.com/cainlevy/presenting.git
cainlevy (author)
Fri Jul 31 10:46:24 -0700 2009
commit  064f85f8c6acb712a9abe79a1b23d3ee076242e2
tree    e19577076e277cf4c1a7697b3ea8ca8574479900
parent  538576874e6cfc2e0973af3b850bf8b2b0880aec
presenting / Rakefile
100644 23 lines (19 sloc) 0.55 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the presenting plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the presenting plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Presenting'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end