Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/dm-cutie-ui.rb
Instance Method Summary collapse
Instance Method Details
#truncate(len, repl = '...') ⇒ Object
104 105 106 |
# File 'lib/dm-cutie-ui.rb', line 104 def truncate(len,repl='...') (self.length <= (len - repl.length)) ? self : self.slice(0,len) + repl.to_s end |