Skip to content

Instantly share code, notes, and snippets.

@dhamkur
Forked from marmeladze/image_uploader.rb
Created March 9, 2019 10:44
Show Gist options
  • Select an option

  • Save dhamkur/3dd903931fe5e1959a26ba65ebe4907a to your computer and use it in GitHub Desktop.

Select an option

Save dhamkur/3dd903931fe5e1959a26ba65ebe4907a to your computer and use it in GitHub Desktop.
class ImageUploader < CarrierWave::Uploader::Base
include Cloudinary::CarrierWave
process :tags => ['post_picture']
version :standard do
process :resize_to_fill => [100, 150, :north]
end
version :article do
resize_to_fit(400, 1100)
end
version :thumbnail do
resize_to_fit(50, 50)
end
def public_id
return model.title.parameterize
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment