I am using Rails 1.2.3 and Active scaffold 1.1.1
My requirement is to send the export of users data weekly to the admin
as email via cron.
How can i automate the process of exporting csv and storing it at a
place? So that i can pick it from there and attach to the email before
sending?
Your problem is only partly related to Rails, but here is are some
topics that you need to research:
How to run Cron jobs in your Linux distribution:
Have a look at “man crontab”, “crontab -e”, crontab -l"
You need to either call a rake task from your cron job, or, you
write a simple shell script.
Maybe a good start would be looking at the following projects: Search results for 'export' - The Ruby Toolbox