Sha256: 964397c6f6da8aaf0d0031b27254d82b19eed8ad85be8903dcacf9d7b451270a

Contents?: true

Size: 868 Bytes

Versions: 76

Compression:

Stored size: 868 Bytes

Contents

class Exception # :nodoc:
  def clean_message
    Pathname.clean_within message
  end
  
  TraceSubstitutions = []
  FrameworkRegexp = /generated|vendor|dispatch|ruby|script\/\w+/
  
  def clean_backtrace
    backtrace.collect do |line|
      Pathname.clean_within(TraceSubstitutions.inject(line) do |line, (regexp, sub)|
        line.gsub regexp, sub
      end)
    end
  end
  
  def application_backtrace
    before_application_frame = true
    
    trace = clean_backtrace.reject do |line|
      non_app_frame = (line =~ FrameworkRegexp)
      before_application_frame = false unless non_app_frame
      non_app_frame && ! before_application_frame
    end
    
    # If we didn't find any application frames, return an empty app trace.
    before_application_frame ? [] : trace
  end
  
  def framework_backtrace
    clean_backtrace.grep FrameworkRegexp
  end
end

Version data entries

76 entries across 76 versions & 5 rubygems

Version Path
backlog-0.1.2 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.2.1 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.0 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.1 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.2 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.3 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.4 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.5 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.6 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.8 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.7 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.3.9 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.0 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.4.0 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.1 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.10 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.2 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.3 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb
backlog-0.5.4 vendor/rails/activesupport/lib/active_support/core_ext/exception.rb