Class: Ronin::Vulns::CLI::RubyShell Private

Inherits:
Core::CLI::RubyShell
  • Object
show all
Defined in:
lib/ronin/vulns/cli/ruby_shell.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

The interactive Ruby shell for Ronin::Vulns.

Since:

  • 0.2.0

Instance Method Summary collapse

Constructor Details

#initialize(name: 'ronin-vulns', context: Vulns, **kwargs) ⇒ RubyShell

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Initializes the ronin-vulns Ruby shell.

Parameters:

  • name (String) (defaults to: 'ronin-vulns')

    The name of the IRB shell.

  • context (Object) (defaults to: Vulns)

    Custom context to launch IRB from within.

  • kwargs (Hash{Symbol => Object})

    Additional keyword arguments for Ronin::Core::CLI::RubyShell#initialize.

Since:

  • 0.2.0



46
47
48
# File 'lib/ronin/vulns/cli/ruby_shell.rb', line 46

def initialize(name: 'ronin-vulns', context: Vulns, **kwargs)
  super(name: name, context: context, **kwargs)
end