module UtteranceParser::Utils

Public Class Methods

ignore_warnings() { || ... } click to toggle source
# File lib/utterance_parser/utils.rb, line 3
def self.ignore_warnings
  old_verbose, $VERBOSE = $VERBOSE, nil
  yield
ensure
  $VERBOSE = old_verbose
end