Module: StdCmd::Resume

Defined in:
lib/command-set/standard-commands.rb

Overview

Resume is very rarely used in user-facing command sets, but can be handy to chain in as a synthetic command

Constant Summary collapse

@@set =
nil

Class Method Summary collapse

Class Method Details

.define_commandsObject



75
76
77
78
79
# File 'lib/command-set/standard-commands.rb', line 75

def self.define_commands
  return @@set ||= Command::CommandSet.define_commands do
    command Command::StandardCommand::Resume
  end 
end