Module: StdCmd::Basics

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

Overview

Includes quit, undo/redo and help.

Constant Summary collapse

@@set =
nil

Class Method Summary collapse

Class Method Details

.define_commandsObject



249
250
251
252
253
254
255
# File 'lib/command-set/standard-commands.rb', line 249

def self.define_commands
  return @@set ||= Command::CommandSet.define_commands do
    include_commands Quit
    include_commands Undo
    include_commands Help
  end
end