From: merch-redmine@... Date: 2016-04-09T22:28:07+00:00 Subject: [ruby-core:74865] [Ruby trunk Feature#12026] Support warning processor Issue #12026 has been updated by Jeremy Evans. File 0001-Add-WARNING_PROCESSOR-for-processing-warnings.patch added Subject changed from Support warning filters to Support warning processor Here is a patch that implements $WARNING_PROCESSOR support. ---------------------------------------- Feature #12026: Support warning processor https://bugs.ruby-lang.org/issues/12026#change-57992 * Author: Jeremy Evans * Status: Open * Priority: Normal * Assignee: ---------------------------------------- This adds a simple way to filter warnings from being displayed. You just set a $WARNING_FILTER with a regexp, and any warnings that match the regexp will not be displayed. I think this is a much simpler approach to filtering warnings than feature #11588, while allowing the same type of capability. This is backwards compatible, in that you can set $WARNING_FILTER in previous versions of ruby without problems. This should not cause any performance issues, as the regexp matching isn't done until the warning message is about to be displayed. It's possible to use something other than a global variable to store the warning filter, but a global variable was the easiest way to implement it, it has a global effect, and similar flags such as $VERBOSE are also global variables, so I think a global variable makes sense. ---Files-------------------------------- 0001-Support-warning-filters.patch (4.12 KB) 0001-Add-WARNING_PROCESSOR-for-processing-warnings.patch (5.13 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: