work in progress

This commit is contained in:
Sam Saffron 2013-02-22 10:56:59 +11:00
parent 1ce70b49c0
commit 21cc9ab1ff
1 changed files with 15 additions and 0 deletions

15
lib/image_optimizer.rb Normal file
View File

@ -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