summaryrefslogtreecommitdiff
path: root/lib/oxidized/source/source.rb
blob: 50939500578834a487b1d588c8cc37fd06ae4d80 (plain)
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