lib/action_controller.rb in actionpack-2.3.4 vs lib/action_controller.rb in actionpack-2.3.5
- old
+ new
@@ -29,12 +29,13 @@
$:.unshift activesupport_path
require 'active_support'
end
end
-gem 'rack', '~> 1.0.0'
+gem 'rack', '~> 1.0.1'
require 'rack'
+require 'action_controller/cgi_ext'
module ActionController
# TODO: Review explicit to see if they will automatically be handled by
# the initilizer if they are really needed.
def self.load_all!
@@ -68,9 +69,10 @@
autoload :RewindableInput, 'action_controller/rewindable_input'
autoload :Routing, 'action_controller/routing'
autoload :SessionManagement, 'action_controller/session_management'
autoload :StatusCodes, 'action_controller/status_codes'
autoload :Streaming, 'action_controller/streaming'
+ autoload :StringCoercion, 'action_controller/string_coercion'
autoload :TestCase, 'action_controller/test_case'
autoload :TestProcess, 'action_controller/test_process'
autoload :Translation, 'action_controller/translation'
autoload :UploadedFile, 'action_controller/uploaded_file'
autoload :UploadedStringIO, 'action_controller/uploaded_file'