mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
25 lines
603 B
Ruby
25 lines
603 B
Ruby
class Pry
|
|
class Command
|
|
class ExitProgram < Pry::ClassCommand
|
|
match 'exit-program'
|
|
group 'Navigating Pry'
|
|
description 'End the current program.'
|
|
|
|
banner <<-'BANNER'
|
|
Usage: exit-program [--help]
|
|
Aliases: quit-program
|
|
!!!
|
|
|
|
End the current program.
|
|
BANNER
|
|
|
|
def process
|
|
Kernel.exit target.eval(arg_string).to_i
|
|
end
|
|
end
|
|
|
|
Pry::Commands.add_command(Pry::Command::ExitProgram)
|
|
Pry::Commands.alias_command 'quit-program', 'exit-program'
|
|
Pry::Commands.alias_command '!!!', 'exit-program'
|
|
end
|
|
end
|