mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 11:20:57 -06:00
16 lines
203 B
Ruby
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
|