I do know nothing about any kind of business repoting logic - so I'll give only programmatic advice.
You could easily parse CSV in Ruby like this:
CSV::Reader.parse(File.open('bigdata', 'rb')) do |row|
p row
break if !row[0].is_null && row[0].data == 'stop'
end
It'll read CSV lines in file "bigdata" untill the first column is 'stop'. See full documentation on ruby-doc.org
The best library for PDF generation from Ruby is Prawn IMO. Use it like this:
Prawn::Document.generate("fancy_table.pdf") do
data = [["Gregory Brown", "gregory.t.brown@fakemail.test" ],
["James Healy" , "jimmy@fakemail.test" ],
["Ross Perot" , "ross@fakemail.test" ],
["Al Gore" , "al@fakemail.test" ],
["Ralph Nader" , "ralph@fakemail.test" ]]
table data,
:position => :center,
:headers => ["Name", "Email"],
:row_colors => ["ffffff","ffff00"],
:vertical_padding => 5,
:horizontal_padding => 3
end
Read full manual and get installation instructions here
And of course you could copy file using standard Ruby File.copy 'reports/new_report.pdf', '../../Desktop'