Sha256: 0126b1fc8cd5b72eac8fe6b06abf42baba10114fa9f9bd2933733bdf1d6ba1cc
Contents?: true
Size: 927 Bytes
Versions: 7
Compression:
Stored size: 927 Bytes
Contents
=begin Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com> 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 module Component module Options # {Component::Options} error namespace. # # All {Component::Options} errors inherit from and live under it. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Error < Arachni::Component::Error # Raised when a provided option is not valid. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Invalid < Error end end lib = File.dirname( __FILE__ ) + '/options/' require lib + 'base' Dir.glob( lib + '*.rb' ).each { |p| require p } end end end
Version data entries
7 entries across 7 versions & 1 rubygems