Module: Cli::Ui

Included in:
Base
Defined in:
lib/cli.rb

Instance Method Summary collapse

Instance Method Details

#puts_padded(left, padding = " ", right = nil) ⇒ Object



7
8
9
10
11
# File 'lib/cli.rb', line 7

def puts_padded(left, padding=" ", right=nil)
  left = left[0, 60] if left.length > 60
  pad_to = right ? 80-right.size : 80
  puts (left.ljust(pad_to, (padding)) + (right||""))
end