When a user registers I need to generate a file and immediately send it to an S3 bucket. How can I do this without using something like paperclip or any other similar gem? I want to avoid these gems because there is nothing being uploaded by any users; the app itself is generating the file for each user.
Share
The simplest approach would be to use a the ruby aws-s3 gem to interact w/ S3 from your application.
There is also fog which is more of a general cloud interaction library (e.g. supports many different cloud services), but I think it is overkill for this need.