Sha256: 3847effdee554bd380341aa1cb251bc13612593ae1a8f137f0bacc4f0fcccbd8
Contents?: true
Size: 799 Bytes
Versions: 6510
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true class Pry class Command class ExitAll < Pry::ClassCommand match 'exit-all' group 'Navigating Pry' 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 def process # calculate user-given value exit_value = target.eval(arg_string) # clear the binding stack pry_instance.binding_stack.clear # break out of the repl loop throw(:breakout, exit_value) end end Pry::Commands.add_command(Pry::Command::ExitAll) Pry::Commands.alias_command '!!@', 'exit-all' end end
Version data entries
6,510 entries across 6,506 versions & 30 rubygems