Sha256: d534951c3d9938b592b81469368dafd1c502badd447d66438649b3b0edcbbb01
Contents?: true
Size: 437 Bytes
Versions: 1
Compression:
Stored size: 437 Bytes
Contents
require 'escape' require 'fileutils' module Imagery VERSION = "0.0.3" 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) end module_function :new end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
imagery-0.0.3 | lib/imagery.rb |