Flowdock
method

rjust

Importance_1
v3.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::Multibyte::Chars
rjust(integer, padstr=' ') public

Works just like String#rjust, only integer specifies characters instead of bytes.

Example:

  "¾ cup".mb_chars.rjust(8).to_s
  # => "   ¾ cup"

  "¾ cup".mb_chars.rjust(8, " ").to_s # Use non-breaking whitespace
  # => "   ¾ cup"
Show source
Register or log in to add new notes.