public
Fork of bmizerany/sinatra
Description: Classy web-development dressed in a DSL
Homepage: http://sinatrarb.com
Clone URL: git://github.com/JackDanger/sinatra.git
Blake Mizerany (author)
Tue Apr 15 17:50:37 -0700 2008
commit  d7e9f3002a49f26c72fae382484b0677dd18292d
tree    221da62ae4b2dd220da1fc20594e645ee4cc2f6c
parent  983358b3c487a77966f40fa1bc337ae5f0a74b65
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