Skip to content

Instantly share code, notes, and snippets.

@marmeladze
Created August 16, 2017 10:39
Show Gist options
  • Select an option

  • Save marmeladze/3260c82263b6d2c30ab63184962380a0 to your computer and use it in GitHub Desktop.

Select an option

Save marmeladze/3260c82263b6d2c30ab63184962380a0 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