class Ronin::CLI::RubyShell

The interactive Ruby shell for {Ronin}.

Public Class Methods

new(name: 'ronin', context: Ronin, **kwargs) click to toggle source

Initializes the ‘ronin irb` Ruby shell.

@param [String] name

The name of the IRB shell.

@param [Object] context

Custom context to launch IRB from within.

@param [Hash{Symbol => Object}] kwargs

Additional keyword arguments for
`Ronin::Core::CLI::RubyShell#initialize`.
Calls superclass method
# File lib/ronin/cli/ruby_shell.rb, line 41
def initialize(name: 'ronin', context: Ronin, **kwargs)
  super(name: name, context: context, **kwargs)
end