1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module Oxidized class Source class NoConfig < OxidizedError; end class << self def inherited klass Oxidized.mgr.loader = { :class => klass } end end def initialize @map = (CFG.model_map or {}) end def map_model model @map.has_key?(model) ? @map[model] : model end end end