Rakefile: completely remove test and doc tasks

It turns out Echoe creates doc and test tasks that do exactly what
we want.
This commit is contained in:
Ryan Tomayko 2008-04-15 03:12:39 -04:00
parent e7e0e55815
commit a3bbfead68
1 changed files with 0 additions and 12 deletions

View File

@ -1,20 +1,8 @@
require 'rubygems'
require 'rake/rdoctask'
require 'echoe'
task :default => :test
task :test do
ENV['SINATRA_ENV'] = 'test'
end
Rake::RDocTask.new do |rd|
rd.main = "README.rdoc"
rd.rdoc_files += ["README.rdoc"]
rd.rdoc_files += Dir.glob("lib/**/*.rb")
rd.rdoc_dir = 'doc'
end
Echoe.new("sinatra") do |p|
p.author = "Blake Mizerany"
p.summary = "Classy web-development dressed in a DSL"