aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-06 02:49:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-06 02:49:49 +0000
commitc7393ab89be7dc3a5fcffa24113713fee3932918 (patch)
tree5c4b71562c544f74eb5bc1f868a6f4ca4fed9ba7 /lib
parent6a482c7f8b1cd7b7015f585831a41f5a182b2024 (diff)
downloadruby-c7393ab89be7dc3a5fcffa24113713fee3932918.tar.gz
irb.rb: IRB::Irb#run
* lib/irb.rb (IRB::Irb#run): split from IRB.start. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/irb.rb34
1 files changed, 19 insertions, 15 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index 92b79b3301..869f5ad894 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -382,21 +382,7 @@ module IRB
else
irb = Irb.new
end
-
- @CONF[:IRB_RC].call(irb.context) if @CONF[:IRB_RC]
- @CONF[:MAIN_CONTEXT] = irb.context
-
- trap("SIGINT") do
- irb.signal_handle
- end
-
- begin
- catch(:IRB_EXIT) do
- irb.eval_input
- end
- ensure
- irb_at_exit
- end
+ irb.run(@CONF)
end
# Calls each event hook of IRB.conf[:AT_EXIT] when the current session quits.
@@ -430,6 +416,24 @@ module IRB
@scanner = RubyLex.new
@scanner.exception_on_syntax_error = false
end
+
+ def run(conf = IRB.conf)
+ conf[:IRB_RC].call(context) if conf[:IRB_RC]
+ conf[:MAIN_CONTEXT] = context
+
+ trap("SIGINT") do
+ signal_handle
+ end
+
+ begin
+ catch(:IRB_EXIT) do
+ eval_input
+ end
+ ensure
+ conf[:AT_EXIT].each{|hook| hook.call}
+ end
+ end
+
# Returns the current context of this irb session
attr_reader :context
# The lexer used by this irb session