Flowdock
method

dump_input_init

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::ClientSkeltonCreator
dump_input_init(input) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/wsdl/soap/clientSkeltonCreator.rb, line 64
  def dump_input_init(input)
    result = input.find_message.parts.collect { |part|
      safevarname(part.name)
    }.join(" = ")
    if result.empty?
      ""
    else
      result << " = nil"
    end
    result
  end
Register or log in to add new notes.