Class: IRB::ExtendCommand::Require
- Inherits:
-
LoaderCommand
- Object
- Nop
- LoaderCommand
- IRB::ExtendCommand::Require
- Defined in:
- lib/irb/cmd/load.rb
Instance Attribute Summary
Attributes inherited from Nop
Instance Method Summary collapse
Methods inherited from LoaderCommand
Methods included from IrbLoader
#irb_load, #load_file, #old, #search_file_from_ruby_path, #source_file
Methods inherited from Nop
category, description, execute, #initialize
Constructor Details
This class inherits a constructor from IRB::ExtendCommand::Nop
Instance Method Details
#execute(file_name = nil) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/irb/cmd/load.rb', line 35 def execute(file_name = nil) raise_cmd_argument_error unless file_name rex = Regexp.new("#{Regexp.quote(file_name)}(\.o|\.rb)?") return false if $".find{|f| f =~ rex} case file_name when /\.rb$/ begin if irb_load(file_name) $".push file_name return true end rescue LoadError end when /\.(so|o|sl)$/ return ruby_require(file_name) end begin irb_load(f = file_name + ".rb") $".push f return true rescue LoadError return ruby_require(file_name) end end |