diff --git a/lib/image_optimizer.rb b/lib/image_optimizer.rb new file mode 100644 index 00000000000..10ac0b07bf2 --- /dev/null +++ b/lib/image_optimizer.rb @@ -0,0 +1,15 @@ +# 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