Module: Composable::Core::Command::ClassMethods
- Defined in:
- lib/composable/core/command.rb
Instance Method Summary collapse
Instance Method Details
#call(*args, **kwargs) ⇒ Object
18 19 20 |
# File 'lib/composable/core/command.rb', line 18 def call(*args, **kwargs) new(*args, **kwargs).call end |
#call!(*args, **kwargs) ⇒ Object
22 23 24 |
# File 'lib/composable/core/command.rb', line 22 def call!(*args, **kwargs) new(*args, **kwargs).call(raise_exception: true) end |