mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05: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
|