Fix backtrace filtering for producer own code

Using /producer-\w+ as pattern is incorrect, we have no guarantee that
the canonical repository or gem name will be included in the install
path. Just use /producer pattern to match lib files or executables.
This commit is contained in:
Thibault Jouan
2015-04-04 20:15:22 +00:00
parent c9971d7ca0
commit dbe7fea204
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ module Producer
module Core
class ErrorFormatter
FILTERS = [
/\/producer-\w+/,
/\/producer/,
Regexp.new(RbConfig::CONFIG['rubylibdir']),
/\/net-ssh/,
/\/net-sftp/