Вы можете передать хэш опций в виде аргумента table()
, указав ширину или ширину столбцов.
options = {column_widths:{ 0 => 125, 1 => 100 }, width: 225}
В вашем примере:
options = {column_widths:{ 0 => 125, 1 => 100 }, width: 225}
arr = ['a', 'aa', 'aaa', 'ddd', 'eee', 'fff']
arr2 = ['aa', 'bb', 'cc', 'dd', 'ee', 'ff']
arr3 = ['a', 'b', 'c', 'd', 'e', 'f']
Prawn::Document.generate("rapportino.pdf") do
move_down 10
image logo,:width=>540,:height=>60
move_down 30
text "Ragione Sociale: "+ARGV[0]
move_down 30
text "Nome Cantiere: "+ARGV[1]
move_down 30
text "Note: "+ARGV[2]
move_down 30
table([
["Articolo - Risorsa", "Descrizione", "Quantita"],
*[arr, arr2, arr3]
.transpose
],options)
end