Class: Pry::Shell::UI::List
- Inherits:
-
Base
- Object
- Base
- Pry::Shell::UI::List
show all
- Defined in:
- lib/pry/shell/ui/list.rb
Constant Summary
collapse
"PRY-SHELL Sessions"
- EMPTY_LIST =
"No session available!"
{ name: "Go back to menu", value: "menu" }.freeze
Constants inherited
from Base
Base::SEPERATOR
Class Method Summary
collapse
Methods inherited from Base
clear!, draw!, stop_main_ui!
Class Method Details
.draw_content ⇒ Object
12
13
14
|
# File 'lib/pry/shell/ui/list.rb', line 12
def draw_content
clients.empty? ? draw_empty_list : draw_list
end
|