Method: Gloo::App::Settings#show
- Defined in:
- lib/gloo/app/settings.rb
#show ⇒ Object
Show the current application settings. Can be seen in app with ‘help settings’
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/gloo/app/settings.rb', line 35 def show puts "\n Application Settings:".blue puts ' Startup with: '.yellow + @start_with.white puts ' Indent in Listing: '.yellow + @list_indent.to_s.white puts ' List Levels: '.yellow + @list_levels.to_s.white puts ' Debug? '.yellow + @debug.to_s.white puts ' Screen Lines: '.yellow + Gloo::App::Settings.lines( @engine ).to_s.white puts ' Page Size: '.yellow + Gloo::App::Settings.page_size( @engine ).to_s.white self.show_paths end |