public
Description: Dutchify your Rails app Plugin
Homepage:
Clone URL: git://github.com/remvee/dutchify.git
remvee (author)
Sat Sep 06 06:22:43 -0700 2008
commit  8b9caf830adb177cc43cc85a5d6f2df870fdb00d
tree    e796ed12c3dd960bf35927c1a3455576e6cb76d8
parent  bc8f255ba3e7e3826181c2953404ff1cf93e2d7b
dutchify / Rakefile
100644 23 lines (19 sloc) 0.554 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 dutchify plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib' << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the dutchify plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Dutchify'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end