GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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  886c5a413e01a9d412edb45ee26e63b7009e99f0
tree    0839ed665df601156129787fc2e1704d30355e05
parent  a0f5849ded7a1edcb678685928f676402f5df320
sinatra / Rakefile
100644 25 lines (20 sloc) 0.655 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rubygems'
require 'rake/testtask'
require 'rake/rdoctask'
require 'echoe'
 
task :default => :test
 
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files += ["README.rdoc"]
  rd.rdoc_files += Dir.glob("lib/**/*.rb")
  rd.rdoc_dir = 'doc'
end
 
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