summaryrefslogtreecommitdiff
path: root/lib/irb/command/exit.rb
blob: 3109ec16e3a44c26b0e3e8846966019823d1a564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module IRB
  # :stopdoc:

  module Command
    class Exit < Base
      category "IRB"
      description "Exit the current irb session."

      def execute(*)
        IRB.irb_exit
      rescue UncaughtThrowError
        Kernel.exit
      end
    end
  end

  # :startdoc:
end