module Commands::CommandMixin

Command mixin

Public Class Methods

included(base) click to toggle source
# File lib/gdsh/command_mixin.rb, line 15
def self.included(base)
  base.extend(ClassMethods)
end

Public Instance Methods

execute() click to toggle source
# File lib/gdsh/command_mixin.rb, line 11
def execute
  fail 'Method not implemented.'
end