Using the regular cl_image_tag(carrierwave_object)
will always produce an http://cloudinary-url
URL, which fails to load on most browsers if they connected to the website through https. Is it possible to make cloudinary serve URLs such as //cloudinary-url
so that the browser can choose the protocol itself, without finding every single cl_image_tag
call and changing it manually?
Note that I'm using the cloudinary_rb
gem with Rails 3.2.x
Thanks!