Module: IRB::ContextExtender

Defined in:
lib/irb/extend-command.rb

Overview

Extends methods for the Context module

Constant Summary collapse

CE =

:nodoc:

ContextExtender

Class Method Summary collapse

Class Method Details

.def_extend_command(cmd_name, load_file, *aliases) ⇒ Object

Evaluate the given command from the given load_file on the Context module.

Will also define any given aliases for the method.



252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/irb/extend-command.rb', line 252

def self.def_extend_command(cmd_name, load_file, *aliases)
  line = __LINE__; Context.module_eval %[
    def #{cmd_name}(*opts, &b)
	  Context.module_eval {remove_method(:#{cmd_name})}
	  require "#{load_file}"
	  send :#{cmd_name}, *opts, &b
	end
	for ali in aliases
	  alias_method ali, cmd_name
	end
  ], __FILE__, line
end

.install_extend_commandsObject

Installs the default context extensions as irb commands:

Context#eval_history=

irb/ext/history.rb

Context#use_tracer=

irb/ext/tracer.rb

Context#math_mode=

irb/ext/math-mode.rb

Context#use_loader=

irb/ext/use-loader.rb

Context#save_history=

irb/ext/save-history.rb



242
243
244
245
246
# File 'lib/irb/extend-command.rb', line 242

def self.install_extend_commands
  for args in @EXTEND_COMMANDS
	def_extend_command(*args)
  end
end