Setup Trouble with CarrierWave and Fog
Today I was configuring a new install of CarrierWave to use S3 storage via the Fog-AWS gem and hit a snag. After following the docs in the Carrierwave readme, I kept getting no method errors on the fog_provider portion of the config.
Here’s the trick, RubyGems links to the 0.10.0 version while GitHub shows master. Instead of referring to the master docs, be sure you look over the 0.10.0 readme:
CarrierWave 0.10.0
Fog >= 1.3.1
https://github.com/carrierwaveuploader/carrierwave/tree/v0.10.0
The moral if the story friends is to always double check your version and refer to the correct docs!
Cheers!