Class: Ronin::Web::CLI::Commands::Irb Private

Inherits:
Ronin::Web::CLI::Command show all
Defined in:
lib/ronin/web/cli/commands/irb.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.

Starts an interactive Ruby shell with ronin-web loaded.

Usage

ronin-web irb [options]

Options

-h, --help                       Print help information

Since:

  • 1.0.0

Instance Method Summary collapse

Instance Method Details

#runObject

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.

Runs the ronin-web irb command.

Since:

  • 1.0.0



48
49
50
51
# File 'lib/ronin/web/cli/commands/irb.rb', line 48

def run
  require 'ronin/web'
  CLI::RubyShell.start
end