I am trying to export a .xls file from my rail application and can not seem to get it to work. I am new to ruby and rails... Here is a sample of my code...
def results
book = Spreadsheet::Workbook.new
sheet1 = book.create_worksheet do |row|
row << [ 'name', 'address', 'date', 'amount' ]
results.each do |r|
row << [ r.name, r.address, r.date, r.amount ]
send_data(sheet1, :type => "application/xls", :filename => "#{client.client_id} #{source.source_id} - search results - #{DateTime.now.strftime("%m.%d.%y")}.xls")
the output I am getting in the xls fils is ... #<Spreadsheet::Worksheet:0x5fb8fd8>
end
Anyone know what I am doing wrong?