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