summaryrefslogtreecommitdiff
path: root/lib/irb/command/force_exit.rb
blob: 14086aa849b67d88a493b546a54c103b01a84ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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