class Cuprum::BuiltIn::NullCommand
A predefined command that does nothing when called.
@example
result = NullCommand.new.call result.value #=> nil result.success? #=> true
Private Instance Methods
process(*_args)
click to toggle source
# File lib/cuprum/built_in/null_command.rb, line 18 def process(*_args); end