Take the 2008 Git User's Survey and help out! [ hide ]

public
Rubygem
Fork of bmizerany/sinatra
Description: Forking to focus on cleaning up the 0.2 series
Homepage: http://sinatrarb.com
Clone URL: git://github.com/rtomayko/sinatra.git
Search Repo:
rtomayko (author)
Sat Jun 07 19:56:44 -0700 2008
commit  1823ed902b2ceed31f9b74812eafb5d96574c87e
tree    07d5e3986eb445e5a2818b6ccbf9f51567dc1fc6
parent  ecc0afa694c063659f9ec8af356fb1dba75dfe0b parent  ea3239c88f8a85f82cc891589bc6ad1c339719e8
sinatra / Rakefile
100644 14 lines (12 sloc) 0.448 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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