Flowdock
method

add_gem_filters

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Rails::BacktraceCleaner

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.2.3) is shown here.

add_gem_filters() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/backtrace_cleaner.rb, line 25
      def add_gem_filters
        gems_paths = (Gem.path | [Gem.default_dir]).map { |p| Regexp.escape(p) }
        return if gems_paths.empty?

        gems_regexp = %{(#{gems_paths.join('|')})/gems/([^/]+)-([\w.]+)/(.*)}
        gems_result = '\2 (\3) \4'.freeze
        add_filter { |line| line.sub(gems_regexp, gems_result) }
      end
Register or log in to add new notes.