Sha256: 3e2de218e31ff865fe9e85ffe87d79cfe631bc4bd7b4cbf46b5ac3319ec5de22
Contents?: true
Size: 372 Bytes
Versions: 2
Compression:
Stored size: 372 Bytes
Contents
class LolSoap::WSDL class Operation attr_reader :wsdl, :action, :input, :output def initialize(wsdl, action, input, output) @wsdl = wsdl @action = action @input = input @output = output end def inspect "<LolSoap::WSDL::Operation " \ "action=#{action.inspect} " \ "input=#{input.inspect}>" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lolsoap-0.1.1 | lib/lolsoap/wsdl/operation.rb |
lolsoap-0.1.0 | lib/lolsoap/wsdl/operation.rb |