class MyUploader < CarrierWave::Uploader::Base
s3_access_policy :public_read
version :thumb do
s3_access_policy :public
end
end
or something along those lines.
/Jonas
> --
> You received this message because you are subscribed to the Google Groups "carrierwave" group.
> To post to this group, send email to carri...@googlegroups.com.
> To unsubscribe from this group, send email to carrierwave...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/carrierwave?hl=en.
>
>
@jnicklas That method sounds good, But I for me when I do the same I get the following errorundefined method `s3_access_policy'
I checked the code of fog and carrierwave but couldn't find an example or comment doing this.