# File lib/cucumber/ast/table.rb, line 73 def initialize(raw, conversion_procs = NULL_CONVERSIONS.dup) @cells_class = Cells @cell_class = Cell raw = ensure_array_of_array(rubify(raw)) # Verify that it's square transposed = raw.transpose create_cell_matrix(raw) @conversion_procs = conversion_procs end