Re: changing the spacing in a string?

str = Array.new
str << “gm-notify 0.10.2-1~ppa1 AlexanderHungenberg (2010-05-05)”
str << “gm-notify 0.9-0~ppa6 TomVetterlein (2009-05-15)”
str << “gm-notify 0.10.2-1~ppa1 AlexanderHungenberg (2010-05-13)”
str << “gm-notify 0.9+r39-1~ppa1 SeanStoops (2009-12-22)”
str << “gm-notify 0.9-0~ppa7 NikolaKovacs (2009-09-27)”
str << “gm-notify 0.8-0ppa2 TomVetterlein (2009-04-27)”

str.each { |s|
s.split.each { |f|
print(format("%25s", f.to_s))
}
puts “”
}

Im sure theres a cleaner way but this way you can play with it.