method

module_from_name

v1_8_6_287 - Show latest stable - Class: SOAP::Mapping
module_from_name(name, lenient = false)
public

No documentation available.

# File lib/soap/mapping/mapping.rb, line 229
  def self.module_from_name(name, lenient = false)
    const = const_from_name(name, lenient)
    if const.is_a?(::Module)
      const
    else
      nil
    end
  end