Skip to content

Instantly share code, notes, and snippets.

View dannypoit's full-sized avatar
💭
I am the third revelation!

Danny Poit dannypoit

💭
I am the third revelation!
View GitHub Profile
@umate
umate / image_uploader.rb
Last active December 3, 2023 03:05
CarrierWave gaussian blur filter using MiniMagick
class ImageUploader < CarrierWave::Uploader::Base
include CarrierWave::MiniMagick
version :blurred do
process :blur
end
def blur(radius=16)
manipulate! do |img|
original_path = img.path