2014-03-19 09:06:26 -04:00
|
|
|
class Pry::Prompt
|
|
|
|
MAP = {
|
|
|
|
"default" => {
|
|
|
|
value: Pry::DEFAULT_PROMPT,
|
2014-05-05 03:49:45 -04:00
|
|
|
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."
|
2014-03-19 09:06:26 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"simple" => {
|
|
|
|
value: Pry::SIMPLE_PROMPT,
|
2014-05-05 03:49:45 -04:00
|
|
|
description: "A simple '>>'."
|
2014-03-19 09:06:26 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"nav" => {
|
|
|
|
value: Pry::NAV_PROMPT,
|
2014-05-05 03:49:45 -04:00
|
|
|
description: "A prompt that displays the binding stack as a path and\n" \
|
|
|
|
"includes information about _in_ and _out_."
|
2014-03-19 09:06:26 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
"none" => {
|
|
|
|
value: Pry::NO_PROMPT,
|
2014-05-05 03:49:45 -04:00
|
|
|
description: "Wave goodbye to the Pry prompt."
|
2014-03-19 09:06:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|