Method: CLI::UI::Frame.prefix_width
- Defined in:
- lib/cli/ui/frame.rb
.prefix_width ⇒ Object
273 274 275 276 277 278 279 |
# File 'lib/cli/ui/frame.rb', line 273 def prefix_width w = FrameStack.items.reduce(0) do |width, item| width + item.frame_style.prefix_width end w.zero? ? w : w + 1 end |