aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/vendor
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-03-14 10:37:20 -0500
committerJoshua Peek <josh@joshpeek.com>2009-03-14 10:37:20 -0500
commit112056333f6ad2492a37b7eb9d647ecd23980592 (patch)
tree94758f46ef125d9211adefba24ac2416ac8a7b07 /actionpack/lib/action_controller/vendor
parent07710fd3e0c5c84521b7929738ba33cea99bc108 (diff)
downloadrails-112056333f6ad2492a37b7eb9d647ecd23980592.tar.gz
rails-112056333f6ad2492a37b7eb9d647ecd23980592.tar.bz2
rails-112056333f6ad2492a37b7eb9d647ecd23980592.zip
Add Rack version to Rails info
Diffstat (limited to 'actionpack/lib/action_controller/vendor')
-rw-r--r--actionpack/lib/action_controller/vendor/rack-1.0/rack.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/vendor/rack-1.0/rack.rb b/actionpack/lib/action_controller/vendor/rack-1.0/rack.rb
index 7fab1a7931..6c73d64612 100644
--- a/actionpack/lib/action_controller/vendor/rack-1.0/rack.rb
+++ b/actionpack/lib/action_controller/vendor/rack-1.0/rack.rb
@@ -3,7 +3,7 @@
# Rack is freely distributable under the terms of an MIT-style license.
# See COPYING or http://www.opensource.org/licenses/mit-license.php.
-$:.unshift(File.expand_path(File.dirname(__FILE__)))
+$: << File.expand_path(File.dirname(__FILE__))
# The Rack main module, serving as a namespace for all core Rack
@@ -23,7 +23,7 @@ module Rack
# Return the Rack release as a dotted string.
def self.release
- "0.4"
+ "1.0 bundled"
end
autoload :Builder, "rack/builder"