Sha256: 5f0f59c1ec95070b15d5a740dc0369f8692d81e050ad4e24acaba96a8e4d55f1

Contents?: true

Size: 1.42 KB

Versions: 6914

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

#
# {Pry::LastException} is a proxy class who wraps an Exception object for
# {Pry#last_exception}. it extends the exception object with methods that
# help pry commands be useful.
#
# the original exception object is not modified and method calls are forwarded
# to the wrapped exception object.
#
class Pry
  class LastException < BasicObject
    attr_accessor :bt_index

    def initialize(exception)
      @exception = exception
      @bt_index = 0
      @file, @line = bt_source_location_for(0)
    end

    def method_missing(name, *args, &block)
      if @exception.respond_to?(name)
        @exception.public_send(name, *args, &block)
      else
        super
      end
    end

    def respond_to_missing?(name, include_all = false)
      @exception.respond_to?(name, include_all)
    end

    #
    # @return [String]
    #  returns the path to a file for the current backtrace. see {#bt_index}.
    #
    attr_reader :file

    #
    # @return [Fixnum]
    #  returns the line for the current backtrace. see {#bt_index}.
    #
    attr_reader :line

    # @return [Exception]
    #   returns the wrapped exception
    #
    def wrapped_exception
      @exception
    end

    def bt_source_location_for(index)
      backtrace[index] =~ /(.*):(\d+)/
      [::Regexp.last_match(1), ::Regexp.last_match(2).to_i]
    end

    def inc_bt_index
      @bt_index = (@bt_index + 1) % backtrace.size
    end
  end
end

Version data entries

6,914 entries across 6,909 versions & 33 rubygems

Version Path
ory-client-0.0.1.alpha46 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha45 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha44 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha43 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha42 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha41 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha40 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha39 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha38 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha37 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha36 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-kratos-client-0.8.2.alpha1 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha31 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
primary_connect_proto-0.4.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/last_exception.rb
primary_connect_proto-0.3.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/last_exception.rb
primary_connect_proto-0.2.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/last_exception.rb
primary_connect_proto-0.1.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha30 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
ory-client-0.0.1.alpha29 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/last_exception.rb
primary_connect_proto-0.0.6 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/last_exception.rb