1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/prompt.rb
Ryan Fitzgerald 20cdc22917 Various copy changes
Improves consistency of capitalization and punctuation across various
help text, plus some rewording and consolidating command groups.
2014-05-05 00:50:44 -07:00

26 lines
723 B
Ruby

class Pry::Prompt
MAP = {
"default" => {
value: Pry::DEFAULT_PROMPT,
description: "The default Pry prompt. Includes information about the\n" \
"current expression number, evaluation context, and nesting\n" \
"level, plus a reminder that you're using Pry."
},
"simple" => {
value: Pry::SIMPLE_PROMPT,
description: "A simple '>>'."
},
"nav" => {
value: Pry::NAV_PROMPT,
description: "A prompt that displays the binding stack as a path and\n" \
"includes information about _in_ and _out_."
},
"none" => {
value: Pry::NO_PROMPT,
description: "Wave goodbye to the Pry prompt."
}
}
end