Sha256: 6518b03024c8289c6ff3272e762040315aa6a6216d5a77addab44915633cbdd9
Contents?: true
Size: 927 Bytes
Versions: 6
Compression:
Stored size: 927 Bytes
Contents
=begin Copyright 2010-2015 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
6 entries across 6 versions & 1 rubygems