lib/imagery.rb in imagery-0.0.2 vs lib/imagery.rb in imagery-0.0.3

- old
+ new

@@ -1,14 +1,15 @@ require 'escape' require 'fileutils' module Imagery - VERSION = "0.0.2" + VERSION = "0.0.3" - autoload :Model, "imagery/model" - autoload :Faking, "imagery/faking" - autoload :S3, "imagery/s3" - autoload :Test, "imagery/test" + autoload :Model, "imagery/model" + autoload :Faking, "imagery/faking" + autoload :S3, "imagery/s3" + autoload :Missing, "imagery/missing" + autoload :Test, "imagery/test" # Syntactic sugar for Imagery::Model::new # @see Imagery::Model#initialize for details def new(*args, &blk) Model.new(*args, &blk)