textwrap

http://rubyforge.org/projects/textwrap/
textwrapモジュールのへなちょこRuby版。

~$ gem search -r textwrap

*** REMOTE GEMS ***

textwrap (0.1.0)
    Text wrapping and filling library like Python textwrap module.

使い方

require 'rubygems'
require 'textwrap'
include Textwrap

puts fill(<<EOS, 40)
The wrap() method is just like fill() except that it returns
a list of strings instead of one big string with newlines to separate
the wrapped lines.
EOS

puts fill('@' * 100, 40)


~$ ruby ex_textwrap.rb
The wrap() method is just like fill()
except that it returns a list of strings
instead of one big string with newlines
to separate the wrapped lines.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@