String representation of this method
Source Code
# File action_web_service/api.rb, line 226 def to_s fqn = "" fqn << (@returns ? (@returns[0].human_name(false) + " ") : "void ") fqn << "#{@public_name}(" fqn << @expects.map{ |p| p.human_name }.join(", ") if @expects fqn << ")" fqn end
<code/>and<pre/>for code samples.