Class: String

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

Instance Method Summary collapse

Instance Method Details

#wrap(width = 78) ⇒ Object



5
6
7
# File 'lib/extensions/string.rb', line 5

def wrap(width=78)
  gsub(/(.{1,#{width}})(\s+|\Z)/, "\\1\n")
end