discourse/lib/image_optimizer.rb
2013-02-22 10:56:59 +11:00

16 lines
203 B
Ruby

# This class is used to download an optimize images.
class ImageOptimizer
def initialize(url)
@url = url
end
def force_refresh!
end
def optimized_path(width=nil, height=nil)
end
end