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