I would like to create one web service in Ruby (Rails 3 application), which will
- accept an Excel file having data for users and user profiles (about 30 columns),
- migrate the data to Database and
- generate a match report (another Excel) and send that back to user.
The Import Excel files columns are like Email,First Name, Last Name, Country, City, Tags (comma separated values)
The Match Excel file will be having columns like Email_excel, Email_db, match(true/false), First Name_Excel, First Name_db, match(true/false)...
Or is there any other way to deal with this scenario.
Update 1: I am using spreadsheet 0.6.5.9 to perform all the above mentioned operations and everything is working fine in web interface through file upload (paperclip). But how can I make this feature available as web service.
Any help, link or suggestions is appreciated. Thanks.