Class: Byebug::IrbCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/irb.rb

Overview

Enter IRB from byebug’s prompt

Instance Attribute Summary

Attributes inherited from Command

#processor

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

#arguments, columnize, #context, #frame, help, #initialize, match, to_s

Methods included from Helpers::StringHelper

#camelize, #deindent, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



17
18
19
20
21
22
23
# File 'lib/byebug/commands/irb.rb', line 17

def self.description
  <<-DESCRIPTION
    irb

    #{short_description}
  DESCRIPTION
end

.regexpObject



13
14
15
# File 'lib/byebug/commands/irb.rb', line 13

def self.regexp
  /^\s* irb \s*$/x
end

.short_descriptionObject



25
26
27
# File 'lib/byebug/commands/irb.rb', line 25

def self.short_description
  "Starts an IRB session"
end

Instance Method Details

#executeObject



29
30
31
32
33
34
35
36
37
# File 'lib/byebug/commands/irb.rb', line 29

def execute
  return errmsg(pr("base.errors.only_local")) unless processor.interface.instance_of?(LocalInterface)

  require "irb"

  # @todo IRB tries to parse $ARGV so we must clear it (see #197). Add a
  #   test case for it so we can remove this comment.
  with_clean_argv { IRB.start }
end