mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
20cdc22917
Improves consistency of capitalization and punctuation across various help text, plus some rewording and consolidating command groups.
35 lines
798 B
Ruby
35 lines
798 B
Ruby
class Pry::Command::ListPrompts < Pry::ClassCommand
|
|
match 'list-prompts'
|
|
group 'Input and Output'
|
|
description 'List the prompts available for use.'
|
|
banner <<-BANNER
|
|
Usage: list-prompts
|
|
|
|
List the available prompts. You can use change-prompt to switch between
|
|
them.
|
|
BANNER
|
|
|
|
def process
|
|
output.puts heading("Available prompts") + "\n"
|
|
prompt_map.each do |name, prompt|
|
|
output.write "Name: #{text.bold(name)}"
|
|
output.puts selected_prompt?(prompt) ? selected_text : ""
|
|
output.puts prompt[:description]
|
|
output.puts
|
|
end
|
|
end
|
|
|
|
private
|
|
def prompt_map
|
|
Pry::Prompt::MAP
|
|
end
|
|
|
|
def selected_text
|
|
text.red " (selected) "
|
|
end
|
|
|
|
def selected_prompt?(prompt)
|
|
_pry_.prompt == prompt[:value]
|
|
end
|
|
Pry::Commands.add_command(self)
|
|
end
|