summaryrefslogtreecommitdiff
path: root/lib/oxidized/output/output.rb
blob: 54d616c3e00f3081ccc5294838a6a284518e22c2 (plain)
1
2
3
4
5
6
7
8
9
10
module Oxidized
  class Output
    class NoConfig < OxidizedError; end
    class << self
      def inherited klass
        Oxidized.mgr.loader = { :class => klass }
      end
    end
  end
end