lib/lite/command/simple.rb in lite-command-1.0.1 vs lib/lite/command/simple.rb in lite-command-1.0.2

- old
+ new

@@ -5,12 +5,12 @@ class Simple class << self def call(*args) - raise Lite::Command::NotImplementedError unless defined?(command) + raise Lite::Command::NotImplementedError unless defined?(execute) - command(*args) + execute(*args) end end end