2007-11-21 17:56:42 -05:00
|
|
|
require 'rubygems'
|
2008-04-11 19:29:36 -04:00
|
|
|
require 'echoe'
|
2007-11-21 17:56:42 -05:00
|
|
|
|
|
|
|
task :default => :test
|
|
|
|
|
2008-04-11 19:29:36 -04:00
|
|
|
Echoe.new("sinatra") do |p|
|
|
|
|
p.author = "Blake Mizerany"
|
|
|
|
p.summary = "Classy web-development dressed in a DSL"
|
|
|
|
p.url = "http://www.sinatrarb.com"
|
|
|
|
p.docs_host = "sinatrarb.com:/var/www/blakemizerany.com/public/docs/"
|
2008-04-15 18:10:50 -04:00
|
|
|
p.dependencies = ["mongrel >=1.0.1"]
|
2008-04-11 19:29:36 -04:00
|
|
|
p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
|
|
|
|
p.include_rakefile = true
|
|
|
|
end
|