Create csv from csv content
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
module ItemsHelper
|
||||
def self.create_csv(data)
|
||||
file = Tempfile.new([Rails.root.join('tmp/').to_s, ".csv"], "")
|
||||
csv = CSV.new(file)
|
||||
data.each do |row|
|
||||
csv << row
|
||||
end
|
||||
|
||||
|
||||
|
||||
end
|
||||
file.rewind
|
||||
file.close
|
||||
file
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user