Method: String#short

Defined in:
lib/facy/core_ext.rb

#shortObject



6
7
8
9
10
11
12
# File 'lib/facy/core_ext.rb', line 6

def short
  if self.size > 50
    self.truncate(50) + "..."
  else
    self
  end
end