Class: IRB::Command::Source

Inherits:
LoaderCommand show all
Defined in:
lib/irb/command/load.rb

Instance Attribute Summary

Attributes inherited from Base

#irb_context

Instance Method Summary collapse

Methods inherited from LoaderCommand

#raise_cmd_argument_error

Methods included from IrbLoader

#irb_load, #load_file, #old, #search_file_from_ruby_path, #source_file

Methods included from RubyArgsExtractor

#ruby_args, #unwrap_string_literal

Methods inherited from Base

category, description, execute, help_message, #initialize

Constructor Details

This class inherits a constructor from IRB::Command::Base

Instance Method Details

#execute(arg) ⇒ Object



78
79
80
81
# File 'lib/irb/command/load.rb', line 78

def execute(arg)
  args, kwargs = ruby_args(arg)
  execute_internal(*args, **kwargs)
end

#execute_internal(file_name = nil) ⇒ Object



83
84
85
86
87
# File 'lib/irb/command/load.rb', line 83

def execute_internal(file_name = nil)
  raise_cmd_argument_error unless file_name

  source_file(file_name)
end