Method: VMC::Spacing#justify
- Defined in:
- lib/vmc/spacing.rb
#justify(str, width) ⇒ Object
84 85 86 87 |
# File 'lib/vmc/spacing.rb', line 84 def justify(str, width) trimmed = trim_escapes(str) str.ljust(width + (str.size - trimmed.size)) end |