Method: WSDL::Definitions#service
- Defined in:
- lib/wsdl/definitions.rb
#service(name) ⇒ Object
172 173 174 175 176 177 178 179 180 |
# File 'lib/wsdl/definitions.rb', line 172 def service(name) service = @services[name] return service if service @imports.each do |import| service = import.content.service(name) if self.class === import.content return service if service end nil end |