class Sentry::Rails::BacktraceCleaner

def initialize

def initialize
  super
  # we don't want any default silencers because they're too aggressive
  remove_silencers!
  @root = "#{Sentry.configuration.project_root}/"
  add_filter do |line|
    line.start_with?(@root) ? line.from(@root.size) : line
  end
  add_filter do |line|
    if line =~ RENDER_TEMPLATE_PATTERN
      line.sub(RENDER_TEMPLATE_PATTERN, "")
    else
      line
    end
  end
end