blob: 0558bc83b01b3f7a9c8167635d687cf932b3f2db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# frozen_string_literal: false
#
# load.rb -
# by Keiju ISHITSUKA([email protected])
#
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(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(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(file_name = nil)
raise_cmd_argument_error unless file_name
source_file(file_name)
end
end
end
# :startdoc:
end
|