avdi / sinatra forked from bmizerany/sinatra

Classy web-development dressed in a DSL

Avdi Grimm (author)
Wed May 28 21:46:44 -0700 2008
commit  d67be5ed606a37c0b247b888842e62c6c0a8d5ce
tree    a93242fee040f7dfb83d8647a8ed009a33d2e565
parent  ea4d402c869106a543f95ccd36c459b505d0d26d
sinatra / Rakefile
100644 15 lines (12 sloc) 0.448 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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