Methods
A
D
R
Instance Public methods
assign_parameters()
# File actionpack/test/controller/webservice_test.rb, line 5
def assign_parameters
  if params[:full]
    render :text => dump_params_keys
  else
    render :text => (params.keys - ['controller', 'action']).sort.join(", ")
  end
end
dump_params_keys(hash = params)
# File actionpack/test/controller/webservice_test.rb, line 13
def dump_params_keys(hash = params)
  hash.keys.sort.inject("") do |s, k|
    value = hash[k]
    value = Hash === value ? "(#{dump_params_keys(value)})" : ""
    s << ", " unless s.empty?
    s << "#{k}#{value}"
  end
end
rescue_action(e)
# File actionpack/test/controller/webservice_test.rb, line 22
def rescue_action(e) raise end