module Fabrication

Constants

VERSION

Public Class Methods

clear_definitions() click to toggle source
# File lib/fabrication.rb, line 40
def self.clear_definitions
  manager.clear
  Sequencer.clear
end
configure(&block) click to toggle source
# File lib/fabrication.rb, line 45
def self.configure(&block)
  Fabrication::Config.configure(&block)
end
manager() click to toggle source
# File lib/fabrication.rb, line 49
def self.manager
  Fabrication::Schematic::Manager.instance
end
schematics() click to toggle source
# File lib/fabrication.rb, line 53
def self.schematics
  Support.log_deprecation('Fabrication.schematics has been replaced by ' \
                          'Fabrication.manager and will be removed in 3.0.0.')
  manager
end