lib/lite/command/simple.rb in lite-command-1.2.0 vs lib/lite/command/simple.rb in lite-command-1.3.0
- old
+ new
@@ -4,13 +4,13 @@
module Command
class Simple
class << self
- def call(*args)
+ def call(*args, **kwargs, &block)
raise Lite::Command::NotImplementedError unless defined?(execute)
- execute(*args)
+ execute(*args, **kwargs, &block)
end
end
end