I would agree with Phrogz in that you should use Win32OLE instead of the spreadsheet gem, if that is possible. This is how you would wrap a cell's text using Win32OLE:
worksheet.Range("A1").WrapText = true where worksheet references a specific worksheet.
Here is a more complete example:
xl = WIN32OLE.new('Excel.Application') # => opens Excel
wb = xl.Workbooks.Add(); # => adds a workbook
worksheet = wb.Worksheets(3) # => 3rd sheet (Excel starts at 1)
worksheet.Range("A1").value = "Hello, how do you do?"
worksheet.Range("A1").WrapText = true # => wraps the text
I hope this helps. I have used Win32OLE to work with Excel and like it.
P.S. Unless I missed it somewhere, it doesn't appear as if you can wrap text using the spreadsheet gem.
EDIT: Since question has added a Linux requirement, I'm adding this as a Linux answer.
Here is some code that I believe will work with POI Ruby Bindings:
h = Poi4r::HSSFWorkbook.new
s = h.createSheet("Sheet1")
r = s.createRow(0)
c = r.createCell(0)
t = h.createCellStyle()
t.setWrapText(true)
I have not tested this. It has been adapted from the POI Ruby page and quickguide for POI spreadsheet.