internetee-registry/app/lib/csv_report_helper.rb
2021-08-11 22:28:20 +03:00

10 lines
197 B
Ruby

module CsvReportHelper
def to_csv
CSV.generate do |csv|
csv << column_names
all.each do |item|
csv << item.attributes.values_at(*column_names)
end
end
end
end