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
Sinatra 0.2.0 released
Blake Mizerany (author)
Fri Apr 11 16:29:36 -0700 2008
commit  ca9ac7b5aeb3d5adc1a4c7fb86e21b0dc688e55b
tree    dc0b7b916739ec5078b99ed3002a9562f231c45f
parent  02626e91b9431f64fb55e3ab6b97e39ad0415c33
...
1
2
3
 
4
5
6
...
15
16
17
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
0
@@ -1,6 +1,7 @@
0
 require 'rubygems'
0
 require 'rake/testtask'
0
 require 'rake/rdoctask'
0
+require 'echoe'
0
 
0
 task :default => :test
0
 
0
@@ -15,3 +16,14 @@ Rake::TestTask.new do |t|
0
   ENV['SINATRA_ENV'] = 'test'
0
   t.pattern = File.dirname(__FILE__) + "/test/*_test.rb"
0
 end
0
+
0
+Echoe.new("sinatra") do |p|
0
+ p.author = "Blake Mizerany"
0
+ p.summary = "Classy web-development dressed in a DSL"
0
+ p.url = "http://www.sinatrarb.com"
0
+ p.docs_host = "sinatrarb.com:/var/www/blakemizerany.com/public/docs/"
0
+ p.dependencies = ["mongrel >=1.0.1", "rack >= 0.3.0"]
0
+ p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
0
+ p.include_rakefile = true
0
+end
0
+

Comments

    No one has commented yet.