Sha256: f9d520af79a0ce49604afc38a57c9f66fb328a10f9aee4100d12b88ce3525729
Contents?: true
Size: 762 Bytes
Versions: 30
Compression:
Stored size: 762 Bytes
Contents
# encoding: ASCII-8BIT require 'echo_version.rb' class Echo_version_port_type # SYNOPSIS # echo_version(version) # # ARGS # version Version - {urn:example.com:simpletype-rpc-type}version # # RETURNS # version_struct Version_struct - {urn:example.com:simpletype-rpc-type}version_struct # def echo_version(version) p [version] raise NotImplementedError.new end # SYNOPSIS # echo_version_r(version_struct) # # ARGS # version_struct Version_struct - {urn:example.com:simpletype-rpc-type}version_struct # # RETURNS # version Version - {urn:example.com:simpletype-rpc-type}version # def echo_version_r(version_struct) p [version_struct] raise NotImplementedError.new end end
Version data entries
30 entries across 15 versions & 9 rubygems