Sha256: 311f69b5c7c78f31ca697f4112042aef1955875efece65de1e913a6b32e6aade
Contents?: true
Size: 361 Bytes
Versions: 10
Compression:
Stored size: 361 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 "<#{self.class} " \ "action=#{action.inspect} " \ "input=#{input.inspect}>" end end end
Version data entries
10 entries across 10 versions & 1 rubygems