# CLI command module Nutella class Command class << self; attr_accessor :description end # Commands overload this method to execute def run (args=nil) console.error("Running a generic command! POOP!") end end end