lib/shutterbug.rb in shutterbug-0.0.11 vs lib/shutterbug.rb in shutterbug-0.1.0
- old
+ new
@@ -1,11 +1,9 @@
module Shutterbug
- VERSION = "0.0.11"
- autoload :Service, "shutterbug/service"
+ VERSION = "0.1.0"
autoload :Rackapp, "shutterbug/rackapp"
autoload :Configuration, "shutterbug/configuration"
- autoload :BugFile, "shutterbug/bug_file"
- autoload :HtmlFile, "shutterbug/html_file"
- autoload :PngFile, "shutterbug/png_file"
- autoload :JsFile, "shutterbug/js_file"
+ autoload :Storage, "shutterbug/storage"
+ autoload :Handlers, "shutterbug/handlers"
autoload :PhantomJob, "shutterbug/phantom_job"
+ autoload :CacheManager, "shutterbug/cache_manager"
end