ruby/lib/irb/command/load.rb
tomoya ishida 6a505d1b59 [ruby/irb] Command implementation not by method
(https://github.com/ruby/irb/pull/824)

* Command is not a method

* Fix command test

* Implement non-method command name completion

* Add test for ExtendCommandBundle.def_extend_command

* Add helper method install test

* Remove spaces in command input parse

* Remove command arg unquote in help command

* Simplify Statement and handle execution in IRB::Irb

* Tweak require, const name

* Always install CommandBundle module to main object

* Remove considering local variable in command or expression check

* Remove unused method, tweak

* Remove outdated comment for help command arg

Co-authored-by: Stan Lo <stan001212@gmail.com>

---------

8fb776e379

Co-authored-by: Stan Lo <stan001212@gmail.com>
2024-04-10 16:52:53 +00:00

90 lines
2 KiB
Ruby

# frozen_string_literal: true
#
# load.rb -
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
require_relative "../ext/loader"
module IRB
# :stopdoc:
module Command
class LoaderCommand < Base
include IrbLoader
def raise_cmd_argument_error
raise CommandArgumentError.new("Please specify the file name.")
end
end
class Load < LoaderCommand
category "IRB"
description "Load a Ruby file."
def execute(arg)
args, kwargs = ruby_args(arg)
execute_internal(*args, **kwargs)
end
def execute_internal(file_name = nil, priv = nil)
raise_cmd_argument_error unless file_name
irb_load(file_name, priv)
end
end
class Require < LoaderCommand
category "IRB"
description "Require a Ruby file."
def execute(arg)
args, kwargs = ruby_args(arg)
execute_internal(*args, **kwargs)
end
def execute_internal(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
end
class Source < LoaderCommand
category "IRB"
description "Loads a given file in the current session."
def execute(arg)
args, kwargs = ruby_args(arg)
execute_internal(*args, **kwargs)
end
def execute_internal(file_name = nil)
raise_cmd_argument_error unless file_name
source_file(file_name)
end
end
end
# :startdoc:
end