2012-08-11 20:22:29 -04:00
|
|
|
class Pry
|
2012-12-25 16:35:17 -05:00
|
|
|
class Command::ExitAll < Pry::ClassCommand
|
|
|
|
match 'exit-all'
|
2012-08-11 21:26:59 -04:00
|
|
|
group 'Navigating Pry'
|
2013-01-09 15:23:19 -05:00
|
|
|
description 'End the current Pry session.'
|
|
|
|
|
|
|
|
banner <<-'BANNER'
|
|
|
|
Usage: exit-all [--help]
|
|
|
|
Aliases: !!@
|
|
|
|
|
|
|
|
End the current Pry session (popping all bindings and returning to caller).
|
|
|
|
Accepts optional return value.
|
|
|
|
BANNER
|
2012-08-11 20:22:29 -04:00
|
|
|
|
2012-08-11 21:26:59 -04:00
|
|
|
def process
|
|
|
|
# calculate user-given value
|
|
|
|
exit_value = target.eval(arg_string)
|
2012-08-11 20:22:29 -04:00
|
|
|
|
2012-08-11 21:26:59 -04:00
|
|
|
# clear the binding stack
|
|
|
|
_pry_.binding_stack.clear
|
|
|
|
|
|
|
|
# break out of the repl loop
|
|
|
|
throw(:breakout, exit_value)
|
|
|
|
end
|
2012-08-11 20:22:29 -04:00
|
|
|
end
|
|
|
|
|
2012-12-25 16:35:17 -05:00
|
|
|
Pry::Commands.add_command(Pry::Command::ExitAll)
|
|
|
|
Pry::Commands.alias_command '!!@', 'exit-all'
|
2012-08-11 20:22:29 -04:00
|
|
|
end
|