Ari_B
1
HAI,
Is there a suggested library for creating nice tabley outputs? I was
looking for output much in the way that benchmark has its output.
asdf 12321 asdf
asdf 12312 qemp[g
qlfckjsd 987234 asdf
etcetera.
KTHXBAI,
Ari
-------------------------------------------|
Nietzsche is my copilot
Ari_B
2
On 7/16/07, Ari B. [email protected] wrote:
HAI,
Is there a suggested library for creating nice tabley outputs? I was
looking for output much in the way that benchmark has its output.
asdf 12321 asdf
asdf 12312 qemp[g
qlfckjsd 987234 asdf
etcetera.
May be ruport, but i think you already know about it.
Ari_B
3
On 7/16/07, Ari B. [email protected] wrote:
HAI,
Is there a suggested library for creating nice tabley outputs? I was
looking for output much in the way that benchmark has its output.
asdf 12321 asdf
asdf 12312 qemp[g
qlfckjsd 987234 asdf
etcetera.
require ‘ruport’
table = [
%w[asdf 12344 asdf],
%w[asdf 12342 qwer(d],
%w[zxcvdfg 23521 vbcbd]
].to_table
puts table.to_text # =>
±-------------------------+
| asdf | 12344 | asdf |
| asdf | 12342 | qwer(d |
| zxcvdfg | 23521 | vbcbd |
±-------------------------+
Ari_B
4
Thanks!
On Jul 15, 2007, at 8:11 PM, Michael F. wrote:
etcetera.
±-------------------------+
| asdf | 12344 | asdf |
| asdf | 12342 | qwer(d |
| zxcvdfg | 23521 | vbcbd |
±-------------------------+
--------------------------------------------|
If you’re not living on the edge,
then you’re just wasting space.