Module: Commande::Interface
- Defined in:
- lib/commande.rb
Overview
Commande interface
Instance Method Summary collapse
-
#call(*args, &block) ⇒ Commande::Result
Triggers the operation and return a result.
Instance Method Details
#call(*args, &block) ⇒ Commande::Result
Triggers the operation and return a result.
All the instance variables marked as output will be available in the result.
216 217 218 219 |
# File 'lib/commande.rb', line 216 def call(*args, &block) @__result = ::Commande::Result.new _call(*args) { super(*args, &block) } end |