Module: Leftpadd

Included in:
String
Defined in:
lib/leftpadd.rb,
lib/leftpadd/version.rb

Constant Summary collapse

VERSION =
"0.1.0"

Instance Method Summary collapse

Instance Method Details

#lefpad(chars, filler = ' ') ⇒ Object



6
7
8
# File 'lib/leftpadd.rb', line 6

def lefpad (chars, filler = ' ')
  self.rjust(chars, filler)
end