Class: Arachni::RPC::Server::ActiveOptions
- Defined in:
- lib/arachni/rpc/server/active_options.rb
Overview
It, for the most part, forwards calls to Options and intercepts a few that need to be updated at other places throughout the framework.
Instance Method Summary collapse
-
#initialize(framework) ⇒ ActiveOptions
constructor
A new instance of ActiveOptions.
- #set(options) ⇒ Object
- #to_h ⇒ Object
Constructor Details
#initialize(framework) ⇒ ActiveOptions
Returns a new instance of ActiveOptions.
20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/arachni/rpc/server/active_options.rb', line 20 def initialize( framework ) @options = framework. (@options.public_methods( false ) - public_methods( false ) ).each do |m| self.class.class_eval do define_method m do |*args| @options.send( m, *args ) end end end end |