mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
14 lines
448 B
Ruby
14 lines
448 B
Ruby
require 'rubygems'
|
|
require 'echoe'
|
|
|
|
task :default => :test
|
|
|
|
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"]
|
|
p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
|
|
p.include_rakefile = true
|
|
end
|