mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
15 lines
203 B
Ruby
15 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
|