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
Search Repo:
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
...
 
 
 
...
1
2
3
0
@@ -1 +1,4 @@
0
+[submodule "vendor/rack"]
0
+ path = vendor/rack
0
+ url = git://github.com/chneukirchen/rack-mirror.git
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@
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
...
9
10
11
12
13
14
15
16
17
...
1
2
3
4
5
6
7
8
9
10
11
12
13
...
16
17
18
 
 
 
19
20
21
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
@@ -9,9 +16,6 @@
0
   require 'swiftcore/evented_mongrel'
0
   puts "Using Evented Mongrel"
0
 end
0
-
0
-require 'rack'
0
-require 'ostruct'
0
 
0
 class Class
0
   def dslify_writer(*syms)

Comments

    No one has commented yet.