123456789_123456789_123456789_123456789_123456789_

Module: IRB::ExtendCommandBundle

Relationships & Source Files
Defined in: lib/irb/default_commands.rb,
lib/irb/ext/use-loader.rb

Overview

For backward compatibility, we need to keep this module:

  • As a container of helper methods

  • As a place to register commands with the deprecated def_extend_command method

Constant Summary

Class Method Summary

Instance Method Summary

Class Method Details

.def_extend_command(cmd_name, cmd_class, _, *aliases)

Drepcated. Use Command.regiser instead.

[ GitHub ]

  
# File 'lib/irb/default_commands.rb', line 255

def self.def_extend_command(cmd_name, cmd_class, _, *aliases)
  Command._register_with_aliases(cmd_name, cmd_class, *aliases)
  Command.class_variable_set(:@@command_override_policies, nil)
end

Instance Method Details

#irb_load(*opts, &b)

Loads the given file similarly to Kernel.load, see IrbLoader#irb_load

[ GitHub ]

  
# File 'lib/irb/ext/use-loader.rb', line 19

def irb_load(*opts, &b)
  Command::Load.execute(irb_context, *opts, &b)
end

#irb_require(*opts, &b)

Loads the given file similarly to Kernel.require

[ GitHub ]

  
# File 'lib/irb/ext/use-loader.rb', line 24

def irb_require(*opts, &b)
  Command::Require.execute(irb_context, *opts, &b)
end