Class: String
Instance Method Summary collapse
Instance Method Details
#limit_length(num) ⇒ Object
94 95 96 97 98 99 100 101 |
# File 'lib/engine2/core.rb', line 94 def limit_length num s = self.strip if s.length > num s[0..num] + "..." else s end end |