inspec/lib/utils/modulator.rb
Christoph Hartmann 8fff2ee989 add author header
2015-10-06 18:55:44 +02:00

12 lines
201 B
Ruby

# encoding: utf-8
# author: Dominik Richter
# author: Christoph Hartmann
module Modulator
def modules
@modules ||= {}
end
def add_module(name, handler)
modules[name] = handler
end
end