class Dopi::Command::Dummy

Public Instance Methods

run() click to toggle source
# File lib/dopi/command/dummy.rb, line 15
def run
  log(:info, "Running dummy command")
  if @command_hash.class == Hash
    log(:info, "Command hash was: #{hash.inspect}")
  end
  true
end
validate() click to toggle source
# File lib/dopi/command/dummy.rb, line 11
def validate
  true
end