Module: Kernel
- Defined in:
- lib/wsdsl.rb
Overview
Extending the top level module to add some helpers
Instance Method Summary collapse
-
#describe_service(url) {|WSDSL| ... } ⇒ Array
Base DSL method called to describe a service.
Instance Method Details
#describe_service(url) {|WSDSL| ... } ⇒ Array
Base DSL method called to describe a service
408 409 410 411 412 413 |
# File 'lib/wsdsl.rb', line 408 def describe_service(url, &block) service = WSDSL.new(url) yield service WSList.add(service) service end |