Sha256: ecb3e1814e3bde18329c61bf2237bb86d119276da6f91e39b5d220ca72beffd2
Contents?: true
Size: 321 Bytes
Versions: 6810
Compression:
Stored size: 321 Bytes
Contents
# frozen_string_literal: true require "pry/commands/exit_all" module PryByebug # # Exit pry REPL with Byebug.stop # class ExitAllCommand < Pry::Command::ExitAll def process super ensure Byebug.stop if Byebug.stoppable? end end end Pry::Commands.add_command(PryByebug::ExitAllCommand)
Version data entries
6,810 entries across 6,806 versions & 29 rubygems