aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base/rack_convenience.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-08-06 19:52:11 -0300
committerYehuda Katz <wycats@gmail.com>2009-08-06 19:52:11 -0300
commitbd6b61be88dfe6eb1ff1dcc5c17542d804a842c7 (patch)
tree13be5181476dc71aca97bbefb795eeb814949e0e /actionpack/lib/action_controller/base/rack_convenience.rb
parent52798fd479d4acbf823d093b03bdd1acf8e86b62 (diff)
downloadrails-bd6b61be88dfe6eb1ff1dcc5c17542d804a842c7.tar.gz
rails-bd6b61be88dfe6eb1ff1dcc5c17542d804a842c7.tar.bz2
rails-bd6b61be88dfe6eb1ff1dcc5c17542d804a842c7.zip
Rename /base to /metal and make base.rb and metal.rb top-level to reflect their module locations
Diffstat (limited to 'actionpack/lib/action_controller/base/rack_convenience.rb')
-rw-r--r--actionpack/lib/action_controller/base/rack_convenience.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/actionpack/lib/action_controller/base/rack_convenience.rb b/actionpack/lib/action_controller/base/rack_convenience.rb
deleted file mode 100644
index 805157b0e3..0000000000
--- a/actionpack/lib/action_controller/base/rack_convenience.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-module ActionController
- module RackConvenience
- extend ActiveSupport::Concern
-
- included do
- delegate :headers, :status=, :location=, :content_type=,
- :status, :location, :content_type, :to => "@_response"
- attr_internal :request, :response
- end
-
- def call(name, env)
- @_request = ActionDispatch::Request.new(env)
- @_response = ActionDispatch::Response.new
- @_response.request = request
- super
- end
-
- def params
- @_params ||= @_request.parameters
- end
-
- # :api: private
- def to_rack
- @_response.prepare!
- @_response.to_a
- end
-
- def response_body=(body)
- response.body = body if response
- super
- end
- end
-end