There appear to be a lot of different docs on how to configure Google Storage with Fog. I've been able to get Paperclip to work with just a few parameters and was hoping to keep things simple for doing some basic file storage and manipulation:
connection = Fog::Storage.new({
provider: 'Google',
google_project: 'MYPROJECT',
google_storage_access_key_id: 'MYKEYID',
google_storage_secret_access_key: 'MYSECRET'
})
This will generate a warning:
[fog][WARNING] Unrecognized arguments: google_project
I'm able to store files, create buckets, and do everything I need EXCEPT I only have access to the default project. Does anyone know how I can simply specify the Google Project in the Fog::Storage.new hash?