mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
ad712a6d7e
C0 is at 99.0%... all except for one experimental feature. So, now any changes have something to be tested against which should be a fairly strong background. Now, the only problem left is that whitespace active areas get fucked. That's not a good thing. Once we get a philosophical stance on such subjects, then we shall figure crap out about what that all means. git-svn-id: svn://hamptoncatlin.com/haml/trunk@13 7063305b-7217-0410-af8c-cdc13e5119b9
24 lines
591 B
Ruby
24 lines
591 B
Ruby
require 'rake'
|
|
require 'rake/testtask'
|
|
require 'rake/rdoctask'
|
|
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
|
|
|
|
|
|
desc 'Default: run unit tests.'
|
|
task :default => :test
|
|
|
|
desc 'Test the haml plugin.'
|
|
Rake::TestTask.new(:test) do |t|
|
|
t.libs << 'lib'
|
|
t.pattern = 'test/**/*_test.rb'
|
|
t.verbose = true
|
|
end
|
|
|
|
desc 'Generate documentation for the haml plugin.'
|
|
Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
rdoc.title = 'Haml'
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
|
rdoc.rdoc_files.include('README')
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
end
|