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
420 421 422 423 424 |
# File 'lib/wsdsl.rb', line 420 def describe_service(url, &block) service = WSDSL.new(url) yield service WSList.add(service) end |