Sha256: d9b02d9da95e7d632c7bf911f8ba90e5becf6618e5b5093dcae939c9f2b116d2

Contents?: true

Size: 920 Bytes

Versions: 5

Compression:

Stored size: 920 Bytes

Contents

=begin
                  Arachni
  Copyright (c) 2010-2011 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>

  This is free software; you can copy and distribute and modify
  this program under the term of the GPL v2.0 License
  (See LICENSE file for details)

=end

module Arachni

require Options.instance.dir['lib'] + 'module/manager'

module RPC
module XML
module Server

module Module

#
# We need to extend the original Manager and redeclare its inherited methods
# which are required over XMLRPC.
#
# @author: Tasos "Zapotek" Laskos
#                                      <tasos.laskos@gmail.com>
#                                      <zapotek@segfault.gr>
# @version: 0.1.1
#
class Manager < ::Arachni::Module::Manager

    # make these inherited methods visible again
    private :load, :available
    public :load, :available

    def initialize( opts )
        super( opts )
    end

end

end
end
end
end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-0.3 lib/rpc/xml/server/module/manager.rb
arachni-0.2.4 lib/rpc/xml/server/module/manager.rb
arachni-0.2.3 lib/rpc/xml/server/module/manager.rb
arachni-0.2.2.2 lib/rpc/xml/server/module/manager.rb
arachni-0.2.2.1 lib/rpc/xml/server/module/manager.rb