I cannot get data to export into an excel spreadsheet... Code
def results
book = Spreadsheet::Workbook.new
sheet1 = book.create_worksheet
sheet1.row(0).push << [
'id', 'name', 'address', 'date', 'amount'
]
results.each_with_index do |r, i|
sheet1.row(i+1).push << [
r.id, r.name, r.address, r.date, r.amount
]
@output = book.write "#{filename}.xls"
send_data(@output, :type => "application/vnd.ms-excel", :filename =>"#{filename}.xls")
end
end
I am getting an output of
#<Spreadsheet::Excel::Writer::Worksheet:0x651f3d8>
in my excel spreadsheet... Does anyone have any ideas? Thanks a lot!