Flowdock
method

parse_soapaction

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::RPC::SOAPlet
parse_soapaction(soapaction) private

No documentation

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

Hide source
# File lib/soap/rpc/soaplet.rb, line 130
  def parse_soapaction(soapaction)
    if !soapaction.nil? and !soapaction.empty?
      if /^"(.+)"$/ =~ soapaction
        return $1
      end
    end
    nil
  end
Register or log in to add new notes.