Parent

Methods

Class/Module Index [+]

Quicksearch

Rails::BacktraceCleaner

Public Class Methods

new() click to toggle source
# File lib/rails/backtrace_cleaner.rb, line 16
def initialize
  super
  add_filter   { |line| line.sub("#{RAILS_ROOT}/", '') }
  add_filter   { |line| line.sub(ERB_METHOD_SIG, '') }
  add_filter   { |line| line.sub('./', '/') } # for tests

  add_gem_filters if defined? Gem

  add_silencer { |line| ALL_NOISE.any? { |dir| line.include?(dir) } }
  add_silencer { |line| RAILS_GEMS.any? { |gem| line =~ /^#{gem} / } }
  add_silencer { |line| line =~ %(vendor/plugins/[^\/]+/lib) }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.