I have a large Ruby array that I would like to print in columns, just like the default output of Unix' 'ls' command (on OS X, at least). Is there a gem or built-in method that can do this? I am aware of the awesome_print gem. It's got some sexy output but it doesn't seem to offer columns.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I think to use
|
|||||
|
|
Enumerable#each_slice may be your friend.
If you want them ordered within columns, you can use slice and Enumerable#zip
|
|||||
|
|
I agree with the commenters Sean but i just couldnt hold mysef and instead held my pee to give bearth to this cutie, i'm on Windows so don't know how the output of ls is alike but i'm sure there are options enough here to give you the desired output
gives
|
|||||
|
|
In addition to my first full fledged configurable solution here a shorter one based on the maximum string length of the elements
gives
|
|||
|
