1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
module Oxidized class Source 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.key?(model) ? @map[model] : model end end end