Sha256: 947b6e9b5514023b57102c68aad7fcae242950a6e0cf61be86c845ba8a7de324

Contents?: true

Size: 437 Bytes

Versions: 1

Compression:

Stored size: 437 Bytes

Contents

require 'escape'
require 'fileutils'

module Imagery
  VERSION = "0.0.4"
  
  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.4 lib/imagery.rb