vote up -1 vote down star

Dear community,

I need to find any solution with Ruby how to generate a kind of report. Monthly. Output from the time register machine is a simple Windows CSV. Need to calculate monthly work hours (+ overtime -too late) and create a PDF plus Ruby shall copy it to another place as an archive/backup.

How would you start a project like this?

Regards, Baiki

flag

1 Answer

vote up 1 vote down

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'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.