Sha256: 100b7b236e88f7c32b815372053721e4f3bebc95bde38b7250113f97cc688264
Contents?: true
Size: 616 Bytes
Versions: 159
Compression:
Stored size: 616 Bytes
Contents
class Pry::Command::ChangePrompt < Pry::ClassCommand match 'change-prompt' group 'Input and Output' description 'Change the current prompt.' command_options argument_required: true banner <<-BANNER Usage: change-prompt NAME Change the current prompt. See list-prompts for a list of available prompts. BANNER def process(prompt) if prompt_map.key?(prompt) _pry_.prompt = prompt_map[prompt][:value] else raise Pry::CommandError, "'#{prompt}' isn't a known prompt!" end end private def prompt_map Pry::Prompt::MAP end Pry::Commands.add_command(self) end
Version data entries
159 entries across 152 versions & 35 rubygems