sinatra/Rakefile

15 lines
448 B
Ruby
Raw Normal View History

2007-11-21 22:56:42 +00:00
require 'rubygems'
2008-04-11 23:29:36 +00:00
require 'echoe'
2007-11-21 22:56:42 +00:00
task :default => :test
2008-04-11 23:29:36 +00: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/"
p.dependencies = ["mongrel >=1.0.1"]
2008-04-11 23:29:36 +00:00
p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
p.include_rakefile = true
end