Module: Synthra::REPL

Defined in:
lib/synthra/repl/formatter.rb,
lib/synthra/repl/enhanced_repl.rb

Defined Under Namespace

Classes: DebugEngine, EnhancedREPL, Formatter

Constant Summary collapse

COMMAND_ALIASES =

Command aliases for the REPL Maps short aliases to full command names

{
  "t" => "table",
  "d" => "debug",
  "i" => "inspect",
  "g" => "gen",
  "l" => "list",
  "h" => "help",
  "q" => "quit"
}.freeze
COMMANDS =

All available REPL commands

%w[
  load list info gen table debug inspect seed mode help quit exit
].freeze