mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 22:29:46 +08: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
|