I do not maintain this library anymore. Please use html_format instead.
quick_table { {:a => 1, :b => 2} }
# => [a][1]
# => [b][2]
quick_table { [{:a => 1, :b => 2}, {:a => 3, :b => 4}] }
# => [a][b]
# => [1][2]
# => [3][4]
quick_table { [[:a, :b], [ 1, 2], [ 3, 4]] }
# => [a][b]
# => [1][2]
# => [3][4]
quick_table { [:a, :b] }
# => [a][b]
quick_table { :a }
# => [a]
cd test/dummy
rails s
open http://localhost:3000/