mneumann / wee

A high-level light-weight web framework with many ideas from Seaside.

This URL has Read+Write access

wee / Rakefile
100644 26 lines (20 sloc) 0.641 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'rake/rdoctask'
 
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_dir = 'doc/rdoc'
  rd.rdoc_files.include('lib/**/*.rb', 'README.rdoc')
  rd.options << '--inline-source'
  rd.options << '--all'
  rd.options << '--accessor=html_attr=HtmlAttribute'
  rd.options << '--accessor=generic_tag=GenericTagBrush'
  rd.options << '--accessor=generic_single_tag=GenericSingleTagBrush'
  rd.options << '--accessor=brush_tag=Brush'
end
 
task :test do
  sh 'mspec -I./lib -f s test/component_spec.rb'
end
 
task :package do
  sh 'gem build wee.gemspec'
end
 
task :clean => [:clobber_rdoc]
 
task :default => [:test, :rdoc, :clean]