Reputation: 37
Some of you guys ever used the gem 'acts_as_xslx'? https://github.com/randym/acts_as_xlsx
class Task < ActiveRecord::Base
acts_as_xlsx
tasks = @organization.tasks
respond_to do |format|
format.xlsx {
send_data tasks.report(start_period, end_period).to_xlsx.to_stream.read, :filename => 'posts.xlsx', :type => "application/vnd.openxmlformates-officedocument.spreadsheetml.sheet"
}
undefined method `to_xlsx' for # string:0x007f206b7daf90
Upvotes: 1
Views: 326