Rails 5 CarrierWave Gem Works in Production But Not In Development
问题 Gem & Ruby Versions ruby '2.5.3', 'rails', '~> 5.2.1', 'carrierwave', '~> 1.2', '>= 1.2.3' When I upload images in my local development environment, I receive no errors and no images are uploaded, but my same application in my production environment uploads images as it should. I've double checked my settings and cannot see anything out of place and the fact that it works in production has me confused. image_uploader.rb class ImageUploader < CarrierWave::Uploader::Base include CarrierWave: