Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/ohgiri.rb

Instance Method Summary collapse

Instance Method Details

#shorten(length = 10, ellipsis = '...') ⇒ Object



2
3
4
# File 'lib/ohgiri.rb', line 2

def shorten(length = 10, ellipsis = '...')
  self.size > length ? "#{self[0, (length - ellipsis.length)]}#{ellipsis}" : self
end