=begin Copyright 2010-2017 Sarosys LLC This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni lib = Options.paths.lib require lib + 'component/output' require lib + 'component/utilities' module Component # Base check class to be extended by all components. # # Defines basic structure and provides utilities. # # @author Tasos "Zapotek" Laskos # @abstract class Base include Arachni # I hate having to keep typing this all the time. include Component::Output include Component::Utilities extend Component::Utilities def shortname self.class.shortname end class <