public
Rubygem
Fork of bmizerany/sinatra
Description: master branch is the integration point for the 0.3.x series
Homepage: http://sinatrarb.com
Clone URL: git://github.com/rtomayko/sinatra.git
Freezing Rack into package to take care of upload issue
Blake Mizerany (author)
Tue Apr 15 15:10:50 -0700 2008
commit  983358b3c487a77966f40fa1bc337ae5f0a74b65
tree    6bc3888adfb1063cee182cb241138127ea57dd6e
parent  540aa5faed8d9918f2056092a4b6466c6dffcc74
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ Echoe.new("sinatra") do |p|
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.dependencies = ["mongrel >=1.0.1"]
0
   p.install_message = "*** Be sure to checkout the site for helpful tips! sinatrarb.com ***"
0
   p.include_rakefile = true
0
 end
...
 
 
 
 
 
 
1
2
3
 
4
5
6
...
10
11
12
13
14
15
16
17
18
...
1
2
3
4
5
6
7
8
9
10
11
12
13
...
17
18
19
 
 
 
20
21
22
0
@@ -1,6 +1,13 @@
0
+Dir[File.dirname(__FILE__) + "/../vendor/*"].each do |l|
0
+ $:.unshift "#{File.expand_path(l)}/lib"
0
+end
0
+
0
+require 'rack'
0
+
0
 require 'rubygems'
0
 require 'uri'
0
 require 'time'
0
+require 'ostruct'
0
 
0
 if ENV['SWIFT']
0
  require 'swiftcore/swiftiplied_mongrel'
0
@@ -10,9 +17,6 @@ elsif ENV['EVENT']
0
   puts "Using Evented Mongrel"
0
 end
0
 
0
-require 'rack'
0
-require 'ostruct'
0
-
0
 class Class
0
   def dslify_writer(*syms)
0
     syms.each do |sym|

Comments

    No one has commented yet.