Sha256: 2ed3e31b35196609adb1b4a873381701588b293d378b199a0a68ffffda157d17
Contents?: true
Size: 486 Bytes
Versions: 6770
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true require_relative "../setting" require_relative "../commands/pry" module Byebug # # Setting for automatically invoking Pry on every stop. # class AutoprySetting < Setting DEFAULT = 0 def initialize PryCommand.always_run = DEFAULT end def banner "Invoke Pry on every stop" end def value=(val) PryCommand.always_run = val ? 1 : 0 end def value PryCommand.always_run == 1 end end end
Version data entries
6,770 entries across 6,767 versions & 30 rubygems