so im following this tutorial: https://devcenter.heroku.com/articles/paperclip-s3
I manage to deploy it to Heroku and App is working in the development. The app is r
For those facing the same problem, I solved this by renaming :bucket => ENV['S3_BUCKET_NAME'], to :bucket => ENV['AWS_BUCKET'],
:bucket => ENV['S3_BUCKET_NAME'],
:bucket => ENV['AWS_BUCKET'],
and downgrading gem 'aws-sdk' to gem 'aws-sdk', '~> 1.61.0'
gem 'aws-sdk'
'aws-sdk', '~> 1.61.0'
and it fix my problem.