In hirb tutorial there's an example for array:
[[1,2], [2,3]]
prints as
+---+---+
| 0 | 1 |
+---+---+
| 1 | 2 |
| 2 | 3 |
+---+---+
But I can't make it work after usual setting up:
require 'hirb'
=>true
>> Hirb.enable
=>nil
The arrays are still printed in usuall manner.
What does it require to print an array as a table?
This works for me: