module Makery

do factory stuff

Constants

Builder

makes stuff

Factory

makes stuff

VERSION

Public Class Methods

[](klass) click to toggle source
# File lib/makery.rb, line 5
def self.[](klass)
  makers[klass]
end
makers() click to toggle source
# File lib/makery.rb, line 9
def self.makers
  @makers ||= new_makers
end
new_makers() click to toggle source
# File lib/makery.rb, line 13
def self.new_makers
  Hash.new { |h, k| h[k] = Factory.new(k) }
end