class Inspec::PluginCtl

def load(name)

def load(name)
  path = @registry[name]
  if path.nil?
    raise "Couldn't find plugin #{name}. Searching in #{@home}"
  end
  # puts "Loading plugin #{name} from #{path}"
  require path
end