summaryrefslogtreecommitdiff
path: root/lib/irb/command/force_exit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/command/force_exit.rb')
-rw-r--r--lib/irb/command/force_exit.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/irb/command/force_exit.rb b/lib/irb/command/force_exit.rb
new file mode 100644
index 0000000000..14086aa849
--- /dev/null
+++ b/lib/irb/command/force_exit.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module IRB
+ # :stopdoc:
+
+ module Command
+ class ForceExit < Base
+ category "IRB"
+ description "Exit the current process."
+
+ def execute(_arg)
+ throw :IRB_EXIT, true
+ end
+ end
+ end
+
+ # :startdoc:
+end