Sha256: 3c4800fdab9ca0ff15ebe41c4fca90d595cc800ced30730b5f0c54371c72cd6f

Contents?: true

Size: 291 Bytes

Versions: 26

Compression:

Stored size: 291 Bytes

Contents

require 'byebug/processors/command_processor'

module Byebug
  #
  # Processes commands in post_mortem mode
  #
  class PostMortemProcessor < CommandProcessor
    def commands
      super.select(&:allow_in_post_mortem)
    end

    def prompt
      '(byebug:post_mortem) '
    end
  end
end

Version data entries

26 entries across 25 versions & 3 rubygems

Version Path
byebug-8.0.1 lib/byebug/processors/post_mortem_processor.rb
byebug-8.0.0 lib/byebug/processors/post_mortem_processor.rb
byebug-7.0.0 lib/byebug/processors/post_mortem_processor.rb
byebug-6.0.2 lib/byebug/processors/post_mortem_processor.rb
byebug-6.0.1 lib/byebug/processors/post_mortem_processor.rb
byebug-6.0.0 lib/byebug/processors/post_mortem_processor.rb