aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/container
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-05-05 16:59:07 +0000
committerLeon Breedt <bitserf@gmail.com>2005-05-05 16:59:07 +0000
commit421045e2ff9e0f2077b4f1f23541f197b3249bd7 (patch)
treeec84f8fe86e21e5f6da88d24958d33c6c6bbee0c /actionwebservice/lib/action_web_service/container
parent811f6a7aab10b0c75ab2882b30075335761d1275 (diff)
downloadrails-421045e2ff9e0f2077b4f1f23541f197b3249bd7.tar.gz
rails-421045e2ff9e0f2077b4f1f23541f197b3249bd7.tar.bz2
rails-421045e2ff9e0f2077b4f1f23541f197b3249bd7.zip
remove usages of @request, @response, @params, and replace with #request, #response, #params,
except for test_invoke (values come from the test case) and one scaffold RHTML template. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1287 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/lib/action_web_service/container')
-rw-r--r--actionwebservice/lib/action_web_service/container/delegated_container.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionwebservice/lib/action_web_service/container/delegated_container.rb b/actionwebservice/lib/action_web_service/container/delegated_container.rb
index ae2c257c9c..4a1ee93e09 100644
--- a/actionwebservice/lib/action_web_service/container/delegated_container.rb
+++ b/actionwebservice/lib/action_web_service/container/delegated_container.rb
@@ -35,7 +35,7 @@ module ActionWebService # :nodoc:
# class ApiController < ApplicationController
# web_service_dispatching_mode :delegated
#
- # web_service(:person) { PersonService.new(@request.env) }
+ # web_service(:person) { PersonService.new(request.env) }
# end
def web_service(name, object=nil, &block)
if (object && block_given?) || (object.nil? && block.nil?)