Class: Spty::Command::HelpCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/spty/commands/help_command.rb

Constant Summary collapse

HELP_TEXT =
"usage: spty <command> [<args>]\n"\
"\n"\
"Player specific command\n"\
"  state             Display the current player state\n"\
"  play              Play the current track\n"\
"  pause             Pause the current track\n"\
"  toggle            Toggle player play or pause\n"\
"  skip              Skip the current track and play the next track\n"\
"  replay            Replay the current track\n"\
"  volume            Shows the current volume level\n"\
"  volume up         Increase the volume level by 10\n"\
"  volume down       Decrease the volume level by 11\n"\
"  volume [number]   Set the volume level to number\n"\
"  mute              Set the volume level to 0\n"\
"  unmute            Set the volume level to 60\n"\
"\n"\
"Track specific command\n"\
"  info              Show information for the current track\n"\
"\n"\
"Version: #{Spty::VERSION}"

Class Method Summary collapse

Class Method Details

.call(_command, _) ⇒ Object



25
26
27
# File 'lib/spty/commands/help_command.rb', line 25

def self.call(_command, _)
  puts HELP_TEXT
end